Files
cavepediav2/web/agent/server.py
Paul Walko 74e63a6b9a
All checks were successful
Build and Push Agent Docker Image / build (push) Successful in 52s
Build and Push Web Docker Image / build (push) Successful in 3m28s
fix web errors
2025-12-13 00:35:38 +01:00

38 lines
802 B
Python

"""
Self-hosted LangGraph agent server using CopilotKit AG-UI protocol.
"""
import os
from fastapi import FastAPI
import uvicorn
from dotenv import load_dotenv
from copilotkit import LangGraphAGUIAgent
from ag_ui_langgraph import add_langgraph_fastapi_endpoint
from main import graph
load_dotenv()
app = FastAPI(title="Cavepedia Agent")
add_langgraph_fastapi_endpoint(
app=app,
agent=LangGraphAGUIAgent(
name="vpi_1000",
description="AI assistant with access to cave-related information through the Cavepedia MCP server",
graph=graph,
),
path="/",
)
@app.get("/health")
def health():
"""Health check."""
return {"status": "ok"}
if __name__ == "__main__":
port = int(os.getenv("PORT", "8000"))
uvicorn.run(app, host="0.0.0.0", port=port)