mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
2d7926f867
Runnable companion to the "Build an Agentic Travel App with Oracle Agent Memory, Agent Spec, and CopilotKit" cookbook recipe: a portable Oracle Agent Spec agent on LangGraph over AG-UI, long-term memory on Oracle AI Database, and a CopilotKit V2 frontend with generative UI + human-in-the-loop. - agent/ Python (uv) Agent Spec agent + FastAPI AG-UI server - frontend/ Next.js CopilotKit V2 chat (flight cards, recall chip, HITL booking) - db/ Oracle AI Database (Free image) + cookbook-user init - docker-compose.yml for local Oracle; per-service railway.json for deploy Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"name": "agentspec-memory-frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:headed": "playwright test --headed",
|
|
"test:e2e:report": "playwright show-report"
|
|
},
|
|
"dependencies": {
|
|
"@ag-ui/client": "^0.0.46",
|
|
"@ag-ui/core": "^0.0.46",
|
|
"@ag-ui/encoder": "^0.0.46",
|
|
"@ag-ui/proto": "^0.0.46",
|
|
"@copilotkit/react-core": "0.0.0-mme-ag-ui-0-0-46-20260227141603",
|
|
"@copilotkit/react-ui": "0.0.0-mme-ag-ui-0-0-46-20260227141603",
|
|
"@copilotkit/runtime": "0.0.0-mme-ag-ui-0-0-46-20260227141603",
|
|
"@copilotkit/runtime-client-gql": "0.0.0-mme-ag-ui-0-0-46-20260227141603",
|
|
"@copilotkit/shared": "0.0.0-mme-ag-ui-0-0-46-20260227141603",
|
|
"hono": "^4.11.4",
|
|
"next": "16.0.10",
|
|
"react": "^19.2.3",
|
|
"react-dom": "^19.2.3",
|
|
"zod": "^3.25.75"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.61.0",
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.0.10",
|
|
"tailwindcss": "^4",
|
|
"typescript": "5.9.2"
|
|
}
|
|
}
|