11 lines
265 B
Python
11 lines
265 B
Python
"""FastAPI server exposing the RAG agent endpoint.
|
|
|
|
NOTE: This file is a stub. The rag_eval module was removed in the
|
|
lean MCP implementation. This file is kept for reference but is not
|
|
functional.
|
|
"""
|
|
|
|
from fastapi import FastAPI
|
|
|
|
app = FastAPI(title="RAG Agent")
|