khlevon's picture
feat: setup blaxel agentic server and add ops scripts
76faade
raw
history blame contribute delete
228 Bytes
import uvicorn
from src.common.config import settings
if __name__ == "__main__":
uvicorn.run(
"src.agents.server.main:app",
host="0.0.0.0",
port=settings.BL_SERVER_PORT,
reload=False,
)