import uvicorn import os from src.app import app if __name__ == "__main__": # Internal port for FastAPI to avoid conflict with Streamlit (7860) port = 5000 uvicorn.run( app, host="0.0.0.0", port=port, log_level="info" )