Spaces:
Sleeping
Sleeping
File size: 560 Bytes
95f7828 c1aadf1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import uvicorn
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from api import researcher # Ensure researcher.py has `api_router`
app = FastAPI(docs_url='/docs')
# Enable CORS for frontend communication
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Include API routes from researcher module
app.include_router(researcher.api_router)
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=7860,reload=True)
|