Spaces:
Running
Running
File size: 9,952 Bytes
2304e6f 821f808 abfb114 2304e6f 821f808 2304e6f e07ea06 2304e6f 52ab762 2304e6f 812f6e6 2304e6f 821f808 abfb114 821f808 abfb114 821f808 2304e6f 52ab762 2304e6f 821f808 2304e6f 52ab762 2304e6f 52ab762 2304e6f 52ab762 2304e6f 52ab762 2304e6f 52ab762 2304e6f 52ab762 2304e6f 821f808 2304e6f 52ab762 2304e6f 71db74e 2304e6f 71db74e 2304e6f 71db74e 2304e6f 6fcd32b 71db74e 6fcd32b 71db74e 2304e6f 52ab762 2304e6f 52ab762 2304e6f 71db74e 2304e6f 52ab762 2304e6f 71db74e 2304e6f 52ab762 2304e6f 71db74e 5c6822d 2304e6f 52ab762 2304e6f 52ab762 5c6822d 71db74e 52ab762 2304e6f 52ab762 2304e6f | 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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 | """
FastAPI wrapper for the RAG Book Assistant agent.
This module provides a standalone FastAPI application that exposes the
/chat endpoint using the agent defined in agent.py. It is separate from
agent.py to allow independent deployment and testing.
"""
import os
import sys
import uuid
import asyncio
import logging
import traceback
from datetime import datetime
from typing import List, Dict, Any, Optional
from collections import deque
from fastapi import FastAPI, HTTPException
from fastapi.responses import JSONResponse
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel, Field, validator
from dotenv import load_dotenv
# Make backend package importable
current_dir = os.path.dirname(os.path.abspath(__file__))
if current_dir not in sys.path:
sys.path.insert(0, current_dir)
# Load environment
load_dotenv()
# Import agent components
try:
from agent import get_agent, Source as AgentSource
from agents import Runner, ToolCallOutputItem
except ImportError as e:
raise ImportError(f"Failed to import agent module: {e}")
# Initialize FastAPI app
app = FastAPI(
title="RAG Chatbot API",
version="1.0.0",
description="FastAPI wrapper for RAG Book Assistant",
)
# ============ CORS Configuration ============
app.add_middleware(
CORSMiddleware,
allow_origins=[
"http://localhost:3000",
"http://127.0.0.1:3000",
"https://hackathon-1-humanoid-ai-robotics.vercel.app",
"https://*.vercel.app",
],
allow_credentials=True,
allow_methods=["GET", "POST", "PUT", "DELETE", "OPTIONS"],
allow_headers=["Content-Type", "Authorization"],
)
# ============ Logging Configuration ============
class InMemoryLogHandler(logging.Handler):
"""Handler that stores log records in memory with a max size limit."""
def __init__(self, max_logs=500):
super().__init__()
self.logs = deque(maxlen=max_logs)
def emit(self, record):
try:
message = self.format(record)
if record.exc_info:
message = f"{message}\n{traceback.format_exception(*record.exc_info)}"
log_entry = {
"timestamp": datetime.fromtimestamp(record.created).isoformat(),
"level": record.levelname,
"logger": record.name,
"message": message,
}
self.logs.append(log_entry)
except Exception:
self.handleError(record)
# Set up in-memory logging
log_handler = InMemoryLogHandler(max_logs=500)
log_formatter = logging.Formatter(
"%(asctime)s - %(name)s - %(levelname)s - %(message)s"
)
log_handler.setFormatter(log_formatter)
# Add handler to root logger and FastAPI logger
root_logger = logging.getLogger()
root_logger.addHandler(log_handler)
if root_logger.level == logging.NOTSET:
root_logger.setLevel(logging.INFO)
# Also capture uvicorn logs
uvicorn_logger = logging.getLogger("uvicorn")
uvicorn_logger.addHandler(log_handler)
uvicorn_logger.setLevel(logging.INFO)
# ============ Pydantic Models ============
class ChatRequest(BaseModel):
question: str = Field(..., min_length=1, max_length=1000)
@validator("question")
def validate_question(cls, v):
if not v or not v.strip():
raise ValueError("Question cannot be empty")
return v.strip()
class Source(BaseModel):
url: str
chunk_index: int
text_snippet: str
class ChatResponse(BaseModel):
answer: str
sources: List[Source]
tokens_used: int
agent_trace: Optional[str] = None
class HealthStatus(BaseModel):
status: str
qdrant: str
openai: str
timestamp: str
class LogEntry(BaseModel):
timestamp: str
level: str
logger: str
message: str
class LogsResponse(BaseModel):
logs: List[LogEntry]
total_entries: int
# ============ Health Check ============
def check_qdrant_health() -> str:
try:
from config import get_config
from qdrant_client import QdrantClient
cfg = get_config()
client = QdrantClient(url=cfg["qdrant_url"], api_key=cfg["qdrant_api_key"])
client.get_collection(cfg["qdrant_collection"])
return "connected"
except Exception as e:
return "disconnected"
def check_openai_health() -> str:
try:
api_key = os.getenv("OPENAI_API_KEY")
if not api_key:
return "disconnected"
import openai
client = openai.OpenAI(api_key=api_key)
client.models.list()
return "connected"
except Exception:
return "disconnected"
@app.get("/health", response_model=HealthStatus)
async def health_check():
qdrant = check_qdrant_health()
openai = check_openai_health()
status = (
"healthy" if qdrant == "connected" and openai == "connected" else "degraded"
)
return HealthStatus(
status=status,
qdrant=qdrant,
openai=openai,
timestamp=datetime.utcnow().isoformat() + "Z",
)
# ============ Logs Endpoint ============
@app.get("/logs", response_model=LogsResponse)
async def get_logs(limit: Optional[int] = None):
"""
Retrieve application logs.
Args:
limit: Optional maximum number of logs to return (default: all, max 500)
Returns:
LogsResponse with list of log entries
"""
all_logs = list(log_handler.logs)
# Apply limit if specified
if limit is not None and limit > 0:
all_logs = all_logs[-limit:] if limit < len(all_logs) else all_logs
return LogsResponse(
logs=[LogEntry(**log) for log in all_logs],
total_entries=len(all_logs),
)
# ============ Root Endpoint ============
@app.get("/")
async def root(logs: Optional[str] = None):
"""
Root endpoint that handles various query parameters.
Args:
logs: If set to 'container', returns application logs
Returns:
Logs if logs=container, otherwise returns API info
"""
if logs == "container":
all_logs = list(log_handler.logs)
return {
"logs": [LogEntry(**log) for log in all_logs],
"total_entries": len(all_logs),
}
return {
"name": "RAG Chatbot API",
"version": "1.0.0",
"endpoints": [
{"method": "GET", "path": "/health", "description": "Health check"},
{"method": "GET", "path": "/logs", "description": "Get application logs"},
{
"method": "GET",
"path": "/?logs=container",
"description": "Get container logs",
},
{"method": "POST", "path": "/chat", "description": "Chat endpoint"},
],
}
# ============ Chat Endpoint ============
@app.post("/chat")
async def chat_endpoint(request: ChatRequest):
request_id = str(uuid.uuid4())[:8]
question = request.question.strip()
logger = logging.getLogger(__name__)
logger.info(f"[{request_id}] Chat request: {question[:100]}...")
try:
logger.info(f"[{request_id}] Initializing agent...")
agent = get_agent()
logger.info(f"[{request_id}] Agent initialized successfully")
# Run agent with timeout (60s to accommodate full workflow and large questions)
logger.info(f"[{request_id}] Running agent with 60s timeout...")
result = await asyncio.wait_for(Runner.run(agent, question), timeout=60.0)
logger.info(f"[{request_id}] Agent completed successfully")
# Extract sources from tool call outputs
sources = []
if result.new_items:
for item in result.new_items:
if isinstance(item, ToolCallOutputItem):
output = item.output
if isinstance(output, list):
for chunk in output:
sources.append(
Source(
url=chunk.get("url", ""),
chunk_index=chunk.get("chunk_index", 0),
text_snippet=chunk.get("text", "")[:200],
)
)
# Get token usage
tokens_used = 0
if result.context_wrapper and hasattr(result.context_wrapper, "usage"):
tokens_used = result.context_wrapper.usage.total_tokens
logger.info(f"[{request_id}] Returning response with {len(sources)} sources")
return ChatResponse(
answer=result.final_output,
sources=sources,
tokens_used=tokens_used,
agent_trace=f"{request_id}: completed",
)
except asyncio.TimeoutError:
logger.warning(f"[{request_id}] Request timeout after 60s")
return JSONResponse(
status_code=504,
content={
"error": "timeout",
"message": "The chatbot is taking too long to respond. Please try a shorter question.",
},
)
except Exception as e:
# Log the full exception for debugging
error_msg = f"Chat endpoint error [{request_id}]: {str(e)}"
logger.error(error_msg, exc_info=True)
if "openai" in str(e).lower() or "rate limit" in str(e).lower():
return JSONResponse(
status_code=503,
content={
"error": "openai_failed",
"message": "The AI service is currently unavailable. Please try again in a few minutes.",
},
)
return JSONResponse(
status_code=500,
content={
"error": "internal_error",
"message": "An unexpected error occurred. Please refresh the page and try again.",
"request_id": request_id,
},
)
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
|