Spaces:
Sleeping
Sleeping
File size: 218 Bytes
37ff7c9 | 1 2 3 4 5 6 7 8 9 10 | import os
import uvicorn
host = os.getenv("API_HOST", "127.0.0.1")
port = int(os.getenv("API_PORT", "8000"))
if __name__ == "__main__":
uvicorn.run("credexp.serving.api:app", host=host, port=port, reload=False)
|