File size: 327 Bytes
8124364 6287ed2 8124364 6287ed2 8124364 6287ed2 |
1 2 3 4 5 6 7 8 9 10 |
"""
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) |