hasanmalik825-gh
agent push with basic end points
bb35792
raw
history blame contribute delete
345 Bytes
from fastapi import FastAPI
import uvicorn
from routes import index_router, reasoning_router
from middleware.middleware import add_middleware
app = FastAPI()
app.middleware("http")(add_middleware)
app.include_router(index_router)
app.include_router(reasoning_router)
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000)