Spaces:
Running
Running
File size: 21,702 Bytes
089f595 774ec97 91832ea 774ec97 089f595 774ec97 c68dc2b 774ec97 97cb448 c68dc2b 1dd03ac 1676a9e 774ec97 275888b 774ec97 505f87d 844f9e0 505f87d 844f9e0 505f87d afe1215 505f87d afe1215 505f87d afe1215 505f87d 774ec97 e0f016c 774ec97 275888b 774ec97 e0f016c 774ec97 e0f016c 97cb448 e0f016c 97cb448 e0f016c 97cb448 e0f016c 774ec97 1dd03ac 98f8a72 1dd03ac cd32f11 1dd03ac 089f595 774ec97 e0f016c 774ec97 dad3f31 774ec97 c68dc2b 774ec97 5c4e69b c68dc2b 5c4e69b c68dc2b 5c4e69b c68dc2b 5c4e69b c68dc2b 5c4e69b c68dc2b 774ec97 fbe249f 774ec97 fbe249f 774ec97 94252ff 774ec97 c68dc2b 089f595 1287e89 e021633 1287e89 089f595 774ec97 805f90c 774ec97 e0f016c 1dd03ac 1676a9e 06603fa 9a22e84 06603fa 1dd03ac 089f595 3f86b3c 774ec97 | 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 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 | from pathlib import Path
from fastapi import FastAPI, HTTPException
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse, FileResponse, HTMLResponse
from fastapi.staticfiles import StaticFiles
import logging
import json
import uuid
from datetime import datetime
import os
import sys
import time
# AÑADIR ESTAS LÍNEAS PARA PRODUCCIÓN
# Asegurar que el directorio raíz está en el path
current_dir = os.path.dirname(os.path.abspath(__file__))
project_root = os.path.dirname(current_dir) # Subir un nivel desde api/
if project_root not in sys.path:
sys.path.insert(0, project_root)
print(f"Project root added to path: {project_root}")
from config.settings import settings, print_config_summary
from config.models import ChatRequest, ChatResponse, FeedbackRequest
from rag.core import RAGSystem
from data.build_menu_json import load_menu_json
from evaluation.performance_logger import log_latency
from evaluation.automated_evaluator import run_automated_evaluation
from evaluation.show_results import show_results
# Configurar logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
print("=" * 50)
print("🚀 CARGANDO API - Registro de endpoints:")
print("=" * 50)
# Inicializar aplicación
app = FastAPI(
title="Asistente Educativo RAG - Prepa en Línea SEP",
description="Sistema de asistencia educativa 24/7 con RAG para Prepa en Línea SEP",
version="2.0.0",
docs_url="/api/docs", # Cambiado de /docs a /api/docs
redoc_url="/api/redoc"
)
# ============================================================
# ENDPOINT DEL DASHBOARD
# ============================================================
@app.get("/dashboard")
async def get_dashboard():
"""Servir el dashboard desde múltiples ubicaciones posibles"""
import os
posibles_ubicaciones = [
"/data/dashboard.html",
"static/dashboard.html",
"/app/static/dashboard.html",
"evaluation/dashboard.html"
]
for path in posibles_ubicaciones:
if os.path.exists(path):
with open(path, "r", encoding="utf-8") as f:
html_content = f.read()
logger.info(f"✅ Dashboard encontrado en: {path}")
return HTMLResponse(content=html_content)
# Si no existe, mostrar diagnóstico
data_dir = "/data"
static_dir = "static"
return HTMLResponse(content=f"""
<html>
<head><title>Dashboard no disponible</title></head>
<body>
<h1>📊 Dashboard no disponible</h1>
<p>El dashboard no se ha generado aún.</p>
<h2>Contenido de /data:</h2>
<pre>{os.listdir(data_dir) if os.path.exists(data_dir) else 'No existe'}</pre>
<h2>Contenido de static/:</h2>
<pre>{os.listdir(static_dir) if os.path.exists(static_dir) else 'No existe'}</pre>
</body>
</html>
""")
# Configurar CORS
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Inicializar sistema RAG
rag_system = RAGSystem()
# Almacenamiento simple en memoria para feedback
feedback_store = {}
conversation_store = {}
# Estado del menú jerárquico
app.state.menu = {}
# Montar archivos estáticos
app.mount("/static", StaticFiles(directory="static"), name="static")
print("✅ Endpoints registrados hasta ahora:")
for route in app.routes:
if hasattr(route, 'path') and hasattr(route, 'methods'):
print(f" {list(route.methods)[0] if route.methods else 'GET'} {route.path}")
@app.on_event("startup")
async def startup_event():
"""Inicializar sistema al arrancar"""
try:
print_config_summary()
# Cargar intents
rag_system.load_intents("data/intents.json")
# Cargar menú desde JSON (NO desde Excel en producción)
menu_json_path = "data/menu.json"
if os.path.exists(menu_json_path):
app.state.menu = load_menu_json(menu_json_path)
logger.info(f"✅ Menú cargado desde: {menu_json_path}")
logger.info(f" Categorías: {len(app.state.menu)}")
else:
logger.warning(f"⚠️ Archivo menu.json no encontrado: {menu_json_path}")
logger.warning(" El menú jerárquico no estará disponible")
logger.warning(" Para generar menu.json, ejecuta: python data/build_menu_json.py")
app.state.menu = {}
logger.info("Sistema RAG inicializado correctamente")
logger.info("Interfaz web disponible en: http://localhost:8000")
logger.info("API Docs disponible en: http://localhost:8000/api/docs")
# ============================================================
# DIAGNÓSTICO DEL VECTOR STORE
# ============================================================
logger.info("=" * 60)
logger.info("🔍 DIAGNÓSTICO DEL VECTOR STORE")
logger.info("=" * 60)
vector_store_path = "data/vector_store"
logger.info(f"📁 Revisando: {vector_store_path}")
logger.info(f" ¿Existe? {os.path.exists(vector_store_path)}")
if os.path.exists(vector_store_path):
files = os.listdir(vector_store_path)
logger.info(f" Archivos encontrados: {files}")
for f in files:
fpath = os.path.join(vector_store_path, f)
size = os.path.getsize(fpath)
logger.info(f" - {f} ({size} bytes)")
# Verificar el índice FAISS
try:
from rag.retriever import VectorStoreFAISS
logger.info("🔄 Intentando cargar VectorStoreFAISS...")
vs = VectorStoreFAISS()
if vs.index:
logger.info(f" ✅ Índice FAISS cargado correctamente")
logger.info(f" 📊 Número de vectores: {vs.index.ntotal}")
logger.info(f" 📐 Dimensión: {vs.embedding_dim}")
else:
logger.warning(" ❌ El índice FAISS es None")
except Exception as e:
logger.error(f" ❌ Error cargando índice: {e}")
# Probar una búsqueda de ejemplo
try:
from rag.embeddings import EmbeddingModel
embedder = EmbeddingModel()
test_query = "¿El módulo propedéutico es obligatorio?"
query_embedding = embedder.embed_query(test_query)
logger.info(f"🔍 Probando búsqueda con: '{test_query[:50]}...'")
if vs and vs.index:
q_emb = query_embedding.reshape(1, -1).astype('float32')
results = vs.index.search(q_emb, 3)
logger.info(f" Resultados (distancias): {results[0]}")
if results[0][0] < 1000: # Distancia baja = similar
logger.info(f" ✅ Búsqueda exitosa! Distancia: {results[0][0]:.4f}")
else:
logger.warning(f" ❌ Sin resultados próximos. Distancias: {results[0]}")
else:
logger.warning(" ❌ No se pudo probar búsqueda - índice no disponible")
except Exception as e:
logger.error(f" ❌ Error en búsqueda de prueba: {e}")
logger.info("=" * 60)
# Ejecutar evaluación automática en segundo plano
logger.info("🚀 Iniciando evaluación automática...")
# Verificar que existe el archivo de test
test_set_path = "evaluation/test_set.json"
if os.path.exists(test_set_path):
logger.info(f"✅ test_set.json encontrado: {test_set_path}")
run_automated_evaluation(
retriever=rag_system.optimized_retriever,
generator=rag_system.generator,
test_set_path=test_set_path
)
else:
logger.warning(f"⚠️ test_set.json no encontrado en: {test_set_path}")
logger.warning(" La evaluación automática no se ejecutará")
eval_dir = "evaluation"
if os.path.exists(eval_dir):
files = os.listdir(eval_dir)
logger.info(f" Archivos en evaluation/: {files}")
else:
logger.warning(f" Directorio evaluation/ no existe")
# Generar dashboard de usuarios automáticamente
try:
from evaluation.generate_user_dashboard import generate_user_dashboard
generate_user_dashboard()
logger.info("✅ Dashboard de usuarios generado automáticamente")
except Exception as e:
logger.error(f"❌ Error generando dashboard de usuarios: {e}")
except Exception as e:
logger.error(f"Error inicializando RAG: {e}")
app.state.menu = {}
@app.get("/")
async def root():
"""Servir la interfaz web principal"""
# Verificar si el archivo index.html existe
index_path = "static/index.html"
if os.path.exists(index_path):
return FileResponse(index_path)
else:
return {
"status": "online",
"service": "Asistente Educativo RAG - Prepa en Línea SEP",
"version": "2.0.0",
"endpoints": {
"web_interface": "http://localhost:8000/",
"api_docs": "http://localhost:8000/api/docs",
"chat": "POST /chat",
"health": "GET /health",
"stats": "GET /stats",
"feedback": "POST /feedback"
},
"note": "Para la interfaz web, crea static/index.html"
}
@app.get("/health")
async def health():
"""Health check para Render"""
return {
"status": "healthy",
"timestamp": datetime.now().isoformat(),
"service": "chatbot-rag-api",
"version": "2.0.0"
}
@app.post("/chat", response_model=ChatResponse)
async def chat(request: ChatRequest):
"""Endpoint principal para chat"""
start_time = time.time()
retrieval_start = start_time
try:
logger.info(f"📩 Mensaje recibido: {request.message[:50]}...")
# Generar IDs si no existen
user_id = request.user_id or str(uuid.uuid4())
conversation_id = request.conversation_id or str(uuid.uuid4())
# Detectar saludos y responder directamente sin RAG
msg_lower = request.message.lower().strip()
saludos = ["hola", "buenos días", "buenas tardes", "buenas", "holi", "hello", "hey", "qué tal", "cómo estás", "buen día"]
despedidas = ["adiós", "chao", "bye", "hasta luego", "me voy", "nos vemos", "me retiro"]
gracias = ["gracias", "thank", "agradezco", "muchas gracias", "te agradezco"]
if any(s in msg_lower for s in saludos):
response_text = "¡Hola! Bienvenido a Prepa en Línea SEP. Estoy aquí para ayudarte con tus dudas sobre el programa. ¿Qué necesitas saber?"
is_rag = False
confidence = 1.0
sources = []
retrieval_time = 0
generation_time = 0
elif any(s in msg_lower for s in despedidas):
response_text = "¡Hasta luego! Éxito en tus estudios. Cuando tengas dudas sobre Prepa en Línea, vuelve a escribirme."
is_rag = False
confidence = 1.0
sources = []
retrieval_time = 0
generation_time = 0
elif any(s in msg_lower for s in gracias):
response_text = "¡De nada! Si tienes más dudas sobre Prepa en Línea, con gusto te ayudo. ¡Éxito en tus estudios!"
is_rag = False
confidence = 1.0
sources = []
retrieval_time = 0
generation_time = 0
else:
# Procesar consulta normal con RAG
retrieval_end = time.time()
retrieval_time = (retrieval_end - retrieval_start) * 1000
generation_start = time.time()
response_text, is_rag, confidence, sources = rag_system.process_query(
request.message
)
generation_end = time.time()
generation_time = (generation_end - generation_start) * 1000
# DEBUG: Verificar qué se recibe
logger.info(f"🔍 DEBUG - response_text tipo: {type(response_text)}, largo: {len(response_text) if response_text else 0}")
logger.info(f"🔍 DEBUG - response_text contenido: '{response_text[:100]}...'")
logger.info(f"🔍 DEBUG - sources count: {len(sources) if sources else 0}")
logger.info(f"📤 Respuesta generada: {'RAG' if is_rag else 'Intent'} - Confianza: {confidence:.2%}")
# Crear respuesta
conf_value = confidence if confidence is not None else 0.5
response = ChatResponse(
response=response_text,
sources=sources,
is_rag_response=is_rag,
confidence=conf_value
)
# Almacenar conversación
message_id = str(uuid.uuid4())
if conversation_id not in conversation_store:
conversation_store[conversation_id] = []
conversation_store[conversation_id].append({
"message_id": message_id,
"user_message": request.message,
"assistant_response": response_text,
"timestamp": datetime.now().isoformat(),
"is_rag": is_rag,
"confidence": confidence,
"sources": sources
})
# Añadir headers con IDs (sin confianza)
headers = {
"X-User-ID": user_id,
"X-Conversation-ID": conversation_id,
"X-Message-ID": message_id,
"X-Response-Type": "rag" if is_rag else "intent",
}
# Log de latencia
total_time = (time.time() - start_time) * 1000
tokens_generated = len(response_text.split()) if response_text else 0
log_latency(
retrieval_time_ms=retrieval_time,
generation_time_ms=generation_time,
total_time_ms=total_time,
tokens_generated=tokens_generated,
question=request.message
)
# Guardar interacción de usuario para dashboard dinámico
try:
interaction = {
"timestamp": datetime.now().isoformat(),
"pregunta": request.message,
"respuesta": response_text,
"tiempo_total_ms": round(total_time, 2),
"tiempo_retrieval_ms": round(retrieval_time, 2),
"tiempo_generacion_ms": round(generation_time, 2),
"confianza": round(conf_value, 4),
"fuentes_usadas": [s.get("source_file", "unknown") for s in sources] if sources else [],
"es_rag": is_rag,
"tokens_generados": tokens_generated,
"session_id": conversation_id
}
log_file = "/data/user_interactions.jsonl"
with open(log_file, "a", encoding="utf-8") as f:
f.write(json.dumps(interaction, ensure_ascii=False) + "\n")
logger.info(f"✅ Interacción guardada en {log_file}")
except Exception as e:
logger.error(f"❌ Error guardando interacción: {e}")
return JSONResponse(
content=response.dict(),
headers=headers
)
except Exception as e:
logger.error(f"❌ Error en chat endpoint: {e}", exc_info=True)
raise HTTPException(status_code=500, detail=str(e))
@app.post("/feedback")
async def submit_feedback(request: FeedbackRequest):
"""Endpoint para recibir feedback"""
try:
feedback_store[request.message_id] = {
"conversation_id": request.conversation_id,
"is_helpful": request.is_helpful,
"feedback_text": request.feedback_text,
"timestamp": datetime.now().isoformat()
}
logger.info(f"📝 Feedback recibido: {request.message_id} - Útil: {request.is_helpful}")
return {
"status": "success",
"message": "Feedback registrado",
"message_id": request.message_id
}
except Exception as e:
logger.error(f"❌ Error guardando feedback: {e}")
raise HTTPException(status_code=500, detail="Error guardando feedback")
@app.get("/stats")
async def get_stats():
"""Estadísticas del sistema"""
try:
# Obtener estadísticas del sistema RAG
rag_stats = rag_system.get_stats()
return {
"system": {
"status": "operational",
"version": "2.0.0",
"timestamp": datetime.now().isoformat()
},
"rag_system": rag_stats,
"conversations": {
"total_conversations": len(conversation_store),
"total_messages": sum(len(msgs) for msgs in conversation_store.values()),
"feedback_count": len(feedback_store)
},
"endpoints": {
"web_interface": "/",
"api_documentation": "/api/docs",
"chat_endpoint": "POST /chat",
"feedback_endpoint": "POST /feedback"
}
}
except Exception as e:
logger.error(f"❌ Error obteniendo estadísticas: {e}")
return {
"system": {
"status": "operational",
"error": str(e)
}
}
@app.get("/api/rag-stats")
async def get_rag_stats():
"""Estadísticas detalladas del sistema RAG"""
try:
stats = rag_system.get_stats()
return {
"status": "success",
"data": stats
}
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
@app.get("/menu")
async def get_menu():
"""Endpoint para obtener la estructura del menú jerárquico"""
if hasattr(app.state, 'menu') and app.state.menu:
return {"menu": app.state.menu}
return {"menu": {}}
@app.get("/evaluation-results")
async def get_evaluation_results():
"""Obtener resultados de evaluación en JSON"""
return show_results()
@app.get("/evaluation-summary")
async def get_evaluation_summary():
"""Mostrar resumen de evaluación en HTML"""
try:
from evaluation.show_results import show_results
import io
import sys
# Capturar output
old_stdout = sys.stdout
sys.stdout = io.StringIO()
show_results()
output = sys.stdout.getvalue()
sys.stdout = old_stdout
return HTMLResponse(content=f"""
<html>
<head><title>Resultados - Prepa en Línea SEP</title></head>
<body>
<pre>{output}</pre>
</body>
</html>
""")
except Exception as e:
return HTMLResponse(content=f"<h1>Error: {e}</h1>", status_code=500)
# Leer desde logs/
base_dir = Path(__file__).parent.resolve().parent
results_path = base_dir / "logs" / "evaluation_results.jsonl"
if not results_path.exists():
return {"results": [], "message": "No hay resultados de evaluación"}
results = []
with open(results_path, "r", encoding="utf-8") as f:
for line in f:
try:
results.append(json.loads(line.strip()))
except json.JSONDecodeError:
continue
return {"results": results, "total": len(results)}
@app.get("/user-dashboard", response_class=HTMLResponse)
async def get_user_dashboard():
"""Servir el dashboard de interacciones de usuarios"""
dashboard_path = "/data/user_dashboard.html"
if os.path.exists(dashboard_path):
with open(dashboard_path, "r", encoding="utf-8") as f:
return HTMLResponse(content=f.read())
return HTMLResponse(content="<h1>Dashboard no disponible</h1><p>Aún no hay interacciones de usuarios.</p>", status_code=202)
@app.get("/user-dashboard/refresh")
async def refresh_user_dashboard():
"""Regenerar el dashboard de interacciones de usuarios"""
try:
from evaluation.generate_user_dashboard import generate_user_dashboard
dashboard_path = "/data/user_dashboard.html"
generate_user_dashboard(output_path=dashboard_path)
return {"status": "success", "message": "Dashboard de usuarios regenerado"}
except Exception as e:
logger.error(f"❌ Error regenerando dashboard: {e}")
return HTMLResponse(content=f"<h1>Error: {e}</h1>", status_code=500)
@app.get("/debug-user-logs")
async def debug_user_logs():
"""Diagnosticar acceso al archivo de logs de usuarios"""
import os
log_file = "/data/user_interactions.jsonl"
result = {
"file_exists": os.path.exists(log_file),
"file_size": os.path.getsize(log_file) if os.path.exists(log_file) else 0,
"data_dir_contents": os.listdir("/data") if os.path.exists("/data") else []
}
if os.path.exists(log_file):
with open(log_file, "r", encoding="utf-8") as f:
result["first_line"] = f.readline()
return result
if __name__ == "__main__":
import uvicorn
logger.info(f"🚀 Iniciando servidor en {settings.API_HOST}:{settings.API_PORT}")
logger.info(f"📁 Directorio estático: {os.path.abspath('static')}")
uvicorn.run(
"api.main:app",
host=settings.API_HOST,
port=settings.API_PORT,
reload=settings.DEBUG
) |