CoolFace
Apppublic

yashodipmore/queryforge-v1

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
app.py14 linesDownload Raw Back to server
1"""Server entrypoint module for multi-mode deployment validators."""2 3from app import app4 5 6def main() -> None:7    import uvicorn8 9    uvicorn.run("server.app:app", host="0.0.0.0", port=7860)10 11 12if __name__ == "__main__":13    main()14