An intelligent, privacy-first airport assistant that transforms the passenger experience through conversational AI, real-time navigation, and context-aware recommendations.
Built during PowerMind Hackathon 2026 ๐
- ๐ค AI-Powered Conversational Assistant - Natural language understanding with local LLM
- ๐บ๏ธ Intelligent Navigation Engine - Graph-based pathfinding with A* algorithm
- ๐ RAG-Based Facility Discovery - Semantic search over airport facilities
- ๐ค Voice Interaction Support - Whisper STT + Piper TTS (completely offline)
- ๐ฑ Boarding Pass Scanning - OCR-based boarding pass extraction
- ๐ก Real-Time Operational Alerts - WebSocket-based flight updates
- ๐ง Multi-Layer Memory Architecture - Context-aware conversation management
- ๐ Privacy-First Design - All processing happens locally, no cloud dependencies
Natural language queries with context-aware responses
Real-time route calculation with turn-by-turn directions
Semantic search with personalized recommendations
Hands-free interaction with Whisper STT
Modern airports present significant challenges for passengers:
- Information Overload: Multiple terminals, hundreds of gates, countless facilities
- Time Pressure: Tight connections, boarding deadlines, security queues
- Language Barriers: International travelers struggling with local signage
- Static Information: Traditional apps provide outdated, non-contextual data
- Poor Discoverability: Hidden amenities, last-minute gate changes, facility locations
Result: Stress, missed flights, poor passenger experience, underutilized airport services.
AirHelp transforms the passenger's phone into an intelligent airport companion capable of:
- Understanding Natural Language: "I'm hungry and in a hurry" โ Quick food recommendations
- Guiding Across Terminals: Step-by-step navigation with time estimates
- Recommending Contextually: Personalized suggestions based on location, preferences, and flight info
- Handling Follow-ups: Conversational memory for natural interactions
- Supporting Voice: Hands-free operation for busy travelers
- Maintaining Privacy: All processing happens locally, no data leaves the device
AirHelp is built using a modular multi-layer AI architecture:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ USER INTERFACE โ
โ React Frontend (Mobile-First) โ
โ โโ Chat Interface โ
โ โโ Voice Input (Whisper STT) โ
โ โโ Navigation Visualization โ
โ โโ Real-time Notifications โ
โโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โ REST API / WebSocket
โ
โโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ ORCHESTRATOR LAYER โ
โ Intent Detection โ Route Selection โ Pipeline Execution โ
โ โโ Navigation Intent โ Graph Engine โ
โ โโ Discovery Intent โ RAG Pipeline โ
โ โโ Assistance Intent โ Support System โ
โ โโ Context Management โ Memory Layer โ
โโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโ
โ โ โ
โผ โผ โผ
โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ
โ RAG PIPELINE โ โ GRAPH ENGINE โ โ VOICE ENGINE โ
โ โ โ โ โ โ
โ Vector DB โ โ A* Pathfind โ โ Whisper STT โ
โ Reranking โ โ Turn-by-Turn โ โ Piper TTS โ
โ LLM Synth โ โ Time Calc โ โ Multi-lang โ
โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ
โ โ โ
โโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ DATA LAYER โ
โ โโ ChromaDB (Vector Store) โ
โ โโ NetworkX (Navigation Graph) โ
โ โโ SQLite (User Sessions, Lost & Found) โ
โ โโ JSON (Airport Catalog, Operational State) โ
โ โโ Ollama (Local LLM - Gemma 2B) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
- Orchestrator Layer: Intent detection, pipeline routing, context management
- RAG Pipeline: Semantic search, reranking, LLM synthesis
- Navigation Engine: Graph-based pathfinding with A* algorithm
- Voice Pipeline: Whisper STT + Piper TTS (offline)
- Memory Architecture: 3-layer system (persistent, ephemeral, turn-based)
- Context Engine: Multi-layer state management with TTL-based caching
- Framework: FastAPI 0.115.0
- Language: Python 3.11+
- LLM: Ollama (Gemma 2B)
- Vector DB: ChromaDB 0.5.23
- Embeddings: Sentence Transformers 3.2.1
- Graph: NetworkX 3.3
- Voice: faster-whisper 1.2.1, Piper TTS 1.4.0
- OCR: OpenCV 4.10.0, Pillow 10.4.0
- Framework: React 18.2.0
- Build Tool: Vite 5.1.4
- Styling: CSS3, Material Symbols
- Voice: MediaRecorder API
- Server: Uvicorn (ASGI)
- Database: SQLite, ChromaDB
- Storage: Local filesystem
- Deployment: Docker (optional)
airhelp/
โโโ backend/
โ โโโ app/
โ โ โโโ api/ # API endpoints
โ โ โ โโโ chat.py # Conversational interface
โ โ โ โโโ navigation.py # Route calculation
โ โ โ โโโ transcribe.py # Speech-to-text
โ โ โ โโโ ocr.py # Boarding pass scanning
โ โ โ โโโ ops.py # Operational alerts
โ โ โโโ services/ # Business logic
โ โ โ โโโ orchestrator.py # Intent routing
โ โ โ โโโ rag_service.py # RAG pipeline
โ โ โ โโโ navigation_service.py # Pathfinding
โ โ โ โโโ llm_service.py # LLM integration
โ โ โ โโโ context_service.py # State management
โ โ โโโ core/ # Core systems
โ โ โ โโโ session/ # Session management
โ โ โ โโโ rag/ # RAG components
โ โ โ โโโ graph/ # Navigation graph
โ โ โ โโโ stt_cache.py # Whisper cache
โ โ โโโ models/ # Data models
โ โ โโโ utils/ # Utilities
โ โโโ data/ # Airport data
โ โโโ requirements.txt
โโโ frontend/
โ โโโ src/
โ โ โโโ components/ # React components
โ โ โ โโโ ChatWindow.jsx # Chat interface
โ โ โ โโโ InputBox.jsx # Voice + text input
โ โ โ โโโ MapView.jsx # Navigation map
โ โ โ โโโ BoardingPassUpload.jsx
โ โ โโโ services/ # API services
โ โ โ โโโ api.js # API client
โ โ โโโ hooks/ # React hooks
โ โ โโโ styles/ # CSS styles
โ โโโ package.json
โโโ docs/ # Documentation
โ โโโ architecture/ # System design
โ โโโ api/ # API reference
โ โโโ deployment/ # Setup guides
โ โโโ demo/ # Demo scripts
โโโ README.md
- Python 3.11+
- Node.js 18+
- Ollama
- ffmpeg
# Clone repository
git clone https://github.com/your-org/airhelp.git
cd airhelp
# Backend setup
cd backend
python3 -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install -r requirements.txt
# Install Ollama and pull model
ollama pull gemma:2b
# Frontend setup
cd ../frontend
npm install
# Start backend
cd ../backend
uvicorn app.main:app --reload
# Start frontend (new terminal)
cd frontend
npm run devVisit http://localhost:3000 to use the application.
Detailed setup guide: docs/deployment/local-setup.md
Comprehensive documentation is available in the docs/ directory:
- System Overview - High-level architecture
- API Reference - Complete API documentation
- Local Setup - Installation guide
- Demo Script - Presentation guide
- Architectural Decisions - Design choices
Full documentation index: DOCUMENTATION_INDEX.md
User: "I'm hungry and in a hurry"
AirHelp: "I found 3 quick food options near you:
1. Starbucks (50m away) - Coffee and pastries
2. Subway (80m away) - Quick sandwiches
3. McDonald's (120m away) - Fast food"
User: "How do I get to Gate B12?"
AirHelp: "Route to Gate B12 (8 minutes):
1. Head straight to security (3.5 min)
2. Turn right into Corridor B (2 min)
3. Gate B12 on your left (2.5 min)"
User: "Where can I charge my phone?"
AirHelp: "Charging stations available at:
1. Starbucks (50m) - Multiple outlets
2. Lounge Area (150m) - Free charging pods
3. Gate B5 (200m) - USB charging stations"
Solves the "recommendation contamination" problem with 3-layer state management:
- Persistent: User profile, flight info
- Ephemeral: Recommendations (5 min TTL), navigation (15 min TTL)
- Turn-based: Single request context
Combines vector search with metadata filtering:
- Semantic similarity (embeddings)
- Category filtering (food, shopping, facilities)
- Location proximity (terminal, level)
- Reranking for relevance
Deterministic routing with A* algorithm:
- Exact distances and paths
- Time estimation with congestion
- Accessibility routing
- Turn-by-turn instructions
Complete privacy and offline capability:
- Local LLM (Ollama + Gemma)
- Embedded vector database
- Offline voice processing
- No cloud dependencies
| Metric | Value |
|---|---|
| Response Time | 1-3 seconds |
| Navigation Accuracy | 95%+ |
| Voice Recognition | 90%+ |
| Offline Capability | 100% |
| Concurrent Users | 50-100 (single instance) |
- Real-time flight integration
- Multi-airport support
- Mobile app (React Native)
- AR navigation overlay
- Predictive assistance
- Multi-modal input (image, video)
- Personalization engine
- Integration with airline systems
PowerMind Hackathon Team
-
[Team Member 1] - Full Stack Development, AI Integration
-
[Team Member 2] - Backend Architecture, RAG Pipeline
-
[Team Member 3] - Frontend Development, UI/UX
This project is licensed under the MIT License - see the LICENSE file for details.
- Ollama for local LLM serving
- OpenAI Whisper for speech recognition
- ChromaDB for vector storage
- FastAPI for the backend framework
- React for the frontend framework
For questions, feedback, or collaboration:
- Email: team@airhelp.com
- GitHub Issues: Report a bug
- Documentation: Full docs
Built with โค๏ธ during PowerMind Hackathon 2026



