uae-kb / app.py
jinruiyang
Add multilingual frontend with full i18n support
6287ed2
"""
UAE Knowledge System Demo - HuggingFace Spaces Entry Point
Using FastAPI with custom HTML frontend
"""
import uvicorn
if __name__ == "__main__":
print("Starting UAE Knowledge System...")
print("Open http://localhost:7860 in your browser")
uvicorn.run("backend.api:app", host="0.0.0.0", port=7860, reload=False)