Run_code_api / app.py
ABAO77's picture
update: new model xlsr
54a64d4
raw
history blame
276 Bytes
from dotenv import load_dotenv
load_dotenv()
from src.apis.create_app import create_app, api_router
import uvicorn
app = create_app()
app.include_router(api_router)
if __name__ == "__main__":
uvicorn.run("app:app", host="0.0.0.0", port=8000, reload=False)