Spaces:
Build error
Build error
File size: 10,091 Bytes
9c7149c | 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 | """
Gresham House Agentic AI Demo
FastAPI + LangGraph Agent + FastMCP Server
"""
import os
import sqlite3
import json
from datetime import datetime
from pathlib import Path
from typing import List, Dict, Any, Optional
from fastapi import FastAPI, HTTPException
from fastapi.responses import HTMLResponse, JSONResponse
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel
from langchain_anthropic import ChatAnthropic
from langchain_community.tools import DuckDuckGoSearchRun
from langchain_core.tools import tool
from langgraph.graph import StateGraph, END
from langgraph.checkpoint.memory import MemorySaver
from typing import Annotated, TypedDict
from fastmcp import FastMCP
# ============== APP INITIALIZATION ==============
app = FastAPI(title="Gresham House Agentic AI")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Initialize FastMCP
mcp = FastMCP("Gresham House Agent")
# ============== AGENT STATE & TOOLS ==============
class AgentState(TypedDict):
messages: List[Dict[str, str]]
query: str
use_case: str
research_results: List[str]
sql_results: List[Dict]
file_operations: List[str]
final_response: str
requires_human_review: bool
# Tool definitions
@tool
def search_web(query: str) -> str:
"""Search the web for current information. Use for market research, competitor analysis, or industry trends."""
try:
search = DuckDuckGoSearchRun()
results = search.run(query[:500])
return results[:2000]
except Exception as e:
return f"Search failed: {str(e)}"
@tool
def read_file(file_path: str) -> str:
"""Read content from a file in the data directory."""
try:
safe_path = Path("data") / file_path.replace("..", "")
if safe_path.exists():
return safe_path.read_text()[:3000]
return f"File not found: {file_path}"
except Exception as e:
return f"Read error: {str(e)}"
@tool
def write_file(file_path: str, content: str) -> str:
"""Write content to a file in the data directory."""
try:
safe_path = Path("data") / file_path.replace("..", "")
safe_path.parent.mkdir(parents=True, exist_ok=True)
safe_path.write_text(content)
return f"Successfully wrote {len(content)} characters to {file_path}"
except Exception as e:
return f"Write error: {str(e)}"
@tool
def query_warehouse(sql_query: str) -> str:
"""Query the SQLite data warehouse. SELECT statements only."""
try:
if not sql_query.strip().upper().startswith("SELECT"):
return "Error: Only SELECT queries are allowed for safety."
conn = sqlite3.connect("data/gresham_demo.db")
cursor = conn.cursor()
cursor.execute(sql_query[:1000])
columns = [desc[0] for desc in cursor.description]
rows = cursor.fetchall()
conn.close()
results = [dict(zip(columns, row)) for row in rows[:50]]
return f"Found {len(results)} rows:\n" + str(results)
except Exception as e:
return f"Query error: {str(e)}"
@tool
def list_files(directory: str = ".") -> str:
"""List files in a directory."""
try:
safe_dir = Path("data") / directory.replace("..", "")
if safe_dir.exists():
files = [str(f) for f in safe_dir.iterdir()]
return f"Files found:\n" + "\n".join(files[:20])
return f"Directory not found: {directory}"
except Exception as e:
return f"List error: {str(e)}"
@tool
def get_schema_info() -> str:
"""Get information about available database tables and schemas."""
try:
conn = sqlite3.connect("data/gresham_demo.db")
cursor = conn.cursor()
cursor.execute("SELECT name FROM sqlite_master WHERE type='table'")
tables = cursor.fetchall()
schema_info = []
for (table_name,) in tables:
cursor.execute(f"PRAGMA table_info({table_name})")
columns = cursor.fetchall()
schema_info.append(f"Table: {table_name}")
schema_info.append(f"Columns: {[col[1] for col in columns]}")
schema_info.append("---")
conn.close()
return "\n".join(schema_info)
except Exception as e:
return f"Schema error: {str(e)}"
# ============== LANGGRAPH AGENT ==============
def create_agent():
"""Create the LangGraph ReAct agent."""
api_key = os.getenv("ANTHROPIC_API_KEY")
if not api_key:
raise ValueError("ANTHROPIC_API_KEY not set")
llm = ChatAnthropic(
model="claude-3-5-sonnet-20241022",
temperature=0,
api_key=api_key
)
tools = [
search_web, read_file, write_file,
query_warehouse, list_files, get_schema_info
]
llm_with_tools = llm.bind_tools(tools)
def agent_node(state: AgentState):
messages = state.get("messages", [])
if not messages:
messages = [{"role": "user", "content": state.get("query", "")}]
response = llm_with_tools.invoke(messages)
return {
"messages": messages + [{"role": "assistant", "content": response.content if hasattr(response, 'content') else str(response)}],
"final_response": response.content if hasattr(response, 'content') else str(response)
}
workflow = StateGraph(AgentState)
workflow.add_node("agent", agent_node)
workflow.set_entry_point("agent")
workflow.add_edge("agent", END)
memory = MemorySaver()
return workflow.compile(checkpointer=memory)
# ============== MCP SERVER TOOLS ==============
@mcp.tool()
async def mcp_search_web(query: str) -> str:
"""Search the web for information via MCP."""
return search_web.invoke(query)
@mcp.tool()
async def mcp_read_file(file_path: str) -> str:
"""Read a file via MCP."""
return read_file.invoke(file_path)
@mcp.tool()
async def mcp_write_file(file_path: str, content: str) -> str:
"""Write a file via MCP."""
return write_file.invoke(file_path, content)
@mcp.tool()
async def mcp_query_warehouse(sql_query: str) -> str:
"""Query the data warehouse via MCP."""
return query_warehouse.invoke(sql_query)
@mcp.tool()
async def mcp_list_files(directory: str = ".") -> str:
"""List files via MCP."""
return list_files.invoke(directory)
@mcp.tool()
async def mcp_get_schema_info() -> str:
"""Get database schema info via MCP."""
return get_schema_info.invoke()
# ============== FASTAPI ENDPOINTS ==============
class QueryRequest(BaseModel):
query: str
use_case: Optional[str] = "Hybrid"
class QueryResponse(BaseModel):
response: str
use_case: str
tools_available: List[str]
@app.get("/", response_class=HTMLResponse)
async def root():
"""Simple web UI."""
return """
<!DOCTYPE html>
<html>
<head>
<title>Gresham House Agent</title>
<style>
body { font-family: system-ui; max-width: 800px; margin: 50px auto; padding: 20px; }
.card { border: 1px solid #ddd; padding: 20px; border-radius: 8px; margin: 20px 0; }
input, button { padding: 10px; margin: 5px 0; }
button { background: #007bff; color: white; border: none; cursor: pointer; }
#response { background: #f5f5f5; padding: 15px; border-radius: 4px; white-space: pre-wrap; }
</style>
</head>
<body>
<h1>🏠 Gresham House Agentic AI Demo</h1>
<div class="card">
<h3>Agent Interface</h3>
<input type="text" id="query" placeholder="Ask the agent..." style="width: 100%;">
<button onclick="submit()">Send</button>
<div id="response" style="margin-top: 20px;">Response will appear here...</div>
</div>
<div class="card">
<h3>MCP Endpoint</h3>
<p>Connect Claude Desktop to: <code id="mcp-url"></code></p>
<p>Available tools: search_web, read_file, write_file, query_warehouse, list_files, get_schema_info</p>
</div>
<script>
document.getElementById('mcp-url').textContent = window.location.origin + '/mcp/';
async function submit() {
const query = document.getElementById('query').value;
const response = await fetch('/api/query', {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({query: query})
});
const data = await response.json();
document.getElementById('response').textContent = data.response;
}
</script>
</body>
</html>
"""
@app.post("/api/query")
async def api_query(request: QueryRequest):
"""API endpoint for agent queries."""
try:
agent = create_agent()
initial_state = {
"messages": [],
"query": request.query,
"use_case": request.use_case,
"research_results": [],
"sql_results": [],
"file_operations": [],
"final_response": "",
"requires_human_review": False
}
config = {"configurable": {"thread_id": "default"}}
result = agent.invoke(initial_state, config)
return QueryResponse(
response=result.get("final_response", "No response"),
use_case=request.use_case,
tools_available=["search_web", "read_file", "write_file", "query_warehouse", "list_files", "get_schema_info"]
)
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
@app.get("/health")
async def health():
"""Health check endpoint."""
return {"status": "healthy", "timestamp": datetime.now().isoformat()}
# Mount MCP server
mcp.mount(app)
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860) |