Spaces:
Sleeping
Sleeping
| 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) | |