JARVIS / run.py
coder-vansh's picture
fix: add HF space configuration
1868953
import uvicorn
import os
if __name__ == "__main__":
port = int(os.environ.get("PORT", 7860))
uvicorn.run(
"app.main:app",
host="0.0.0.0",
port=port,
reload=False,
)