Backend: - Enterprise Agent refactored from single-round to ReAct multi-turn loop - New agent.ts (LLM decision node) + tool-executor.ts (tool execution + Gen-UI) - tool-defs.ts extracted for shared tool schemas - MAX_ITERATIONS=6 safeguard against infinite loops Frontend: - MessageBubble: Markdown + code highlighting + LaTeX + tables - ThemeToggle: light/dark/system theme cycling - chart-result Gen-UI card: recharts bar/line/pie/area charts Infrastructure: - Docker Compose (lightweight): only LangGraph + Frontend, Azure cloud for PG/Redis/Blob - Dockerfiles for dev (hot reload) and prod - Makefile with dev/prod/down/logs commands - Updated CLAUDE.md and agent definitions for LangGraph.js architecture Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
250 B
JSON
13 lines
250 B
JSON
{
|
|
"node_version": "20",
|
|
"graphs": {
|
|
"agent": "./src/agent/supervisor/index.ts:graph",
|
|
"chat": "./src/agent/chat-agent/index.ts:agent"
|
|
},
|
|
"ui": {
|
|
"agent": "./src/agent-uis/index.tsx"
|
|
},
|
|
"env": ".env",
|
|
"dependencies": ["."]
|
|
}
|