Spaces:
Sleeping
Sleeping
File size: 958 Bytes
f866820 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
"""FastAPI application for RAG backend."""
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from src.api.routes import router
app = FastAPI(
title="RAG Document Assistant API",
description="REST API for RAG-based document querying",
version="1.0.0"
)
# CORS middleware for React frontend
# Allow Vercel deployments and local development
app.add_middleware(
CORSMiddleware,
allow_origins=[
"http://localhost:5173",
"http://localhost:5174",
"http://localhost:5175",
"http://127.0.0.1:5173",
"http://127.0.0.1:5174",
"http://127.0.0.1:5175",
],
allow_origin_regex=r"https://.*\.(vercel\.app|hf\.space)",
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Include API routes
app.include_router(router, prefix="/api")
@app.get("/")
async def root():
return {"message": "RAG Document Assistant API", "docs": "/docs"}
|