Spaces:
Sleeping
Sleeping
File size: 646 Bytes
cf02b2b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
"""
Voice Bot Application - Entry Point
This file has been refactored. The main application logic is now in app.py
Please run: python app.py or use uvicorn app:app
The modular structure:
- config.py: Configuration and constants
- audio_services.py: ASR and TTS functionality
- rag_service.py: Vector store and document search
- llm_service.py: LangGraph and LLM handling
- document_service.py: PDF processing and document upload
- websocket_handler.py: WebSocket connection handling
- app.py: FastAPI application and routes
"""
from app import app
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000) |