from fastapi import FastAPI from fastapi.middleware.cors import CORSMiddleware from app.routes import chat from app.database import engine, Base from app.qdrant_client import init_qdrant_collection app = FastAPI(title="RAG Chatbot API") # CORS Configuration - Allow frontend to connect app.add_middleware( CORSMiddleware, allow_origins=["http://localhost:3000", "http://127.0.0.1:3000"], allow_credentials=True, allow_methods=["*"], allow_headers=["*"], ) # Include routers app.include_router(chat.router) @app.on_event("startup") async def startup_event(): # Create database tables Base.metadata.create_all(bind=engine) # Initialize Qdrant collection init_qdrant_collection() @app.get("/") async def root(): return {"message": "RAG Chatbot API"} @app.get("/api/health") async def health(): return {"status": "ok"}