mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
580fe9bc58
The deployable Next.js demo behind the new Daytona cookbook recipe. A minimal CopilotKit Built-in Agent whose only added capability is the recipe's runCode server tool — executes Python / TypeScript / JavaScript in an isolated Daytona sandbox and streams the result back to the chat via a custom useRenderTool card (fixed-height streaming code pane with react-syntax-highlighter + vscDarkPlus, mirroring @copilotkit/react-ui's own CodeBlock, and a fixed- height result pane with a 'Generated code:' / 'Result:' label pair). The agent's system prompt instructs it not to restate stdout in chat text since the renderer already shows it. Standalone npm project — intentionally not in the monorepo's pnpm workspace (matches the existing examples/showcases/* convention; only generative-ui- playground is in the workspace globs). Validated end to end against published @copilotkit/runtime@1.58.0 with both Python and JavaScript snippets round- tripping through real Daytona sandboxes. OSS-222
2.4 KiB
2.4 KiB
CopilotKit × Daytona — runCode showcase
The deployable demo behind the Daytona cookbook recipe.
A minimal CopilotKit Built-in Agent app whose only added capability is a runCode server tool that executes
Python / TypeScript / JavaScript inside an isolated Daytona sandbox and streams the
result back to the chat — with a custom useRenderTool card (fixed-height streaming code pane with
syntax highlighting and a fixed-height result pane).
What's inside
app/api/copilotkit-single/route.ts— the recipe'srunCodetool wired into aBuiltInAgentoncreateCopilotEndpointSingleRoute. Pure recipe code (Python/TS/JS viadaytona.create({ language })).app/page.tsx—CopilotKitProvider+CopilotSidebar+ auseRenderTool({ name: "runCode" })renderer usingreact-syntax-highlighter(Prism +vscDarkPlus, mirroring@copilotkit/react-ui's ownCodeBlock).- A system prompt that tells the agent the tool result is rendered directly to the user, so it doesn't restate stdout in chat text.
Prerequisites
- Node 18+
- An OpenAI API key (
OPENAI_API_KEY) — the recipe defaults toopenai:gpt-5.4-mini, overridable via theMODELenv var. - A Daytona API key (
DAYTONA_API_KEY) — create one in the Daytona dashboard.
Run locally
npm install
echo "OPENAI_API_KEY=sk-…" > .env.local
echo "DAYTONA_API_KEY=…" >> .env.local
npm run dev # http://localhost:3000
Open the page, click into the sidebar chat, and ask something like:
Run a Python snippet that prints the first 10 Fibonacci numbers.
Run JavaScript that logs Date.now().
Notes
- This is a standalone npm project — intentionally not in the monorepo's
pnpm-workspace.yaml.npm installhere installs against published@copilotkit/*@1.58.0, which is the same surface the recipe targets. new Daytona()throws at module load ifDAYTONA_API_KEYis missing, so the app won't boot without it. That's by design — the key is required, not optional.- For arbitrary languages beyond Python/TS/JS, swap
sandbox.process.codeRunforsandbox.process.executeCommand(...)and optionally use a custom DaytonaImagewith the toolchain preinstalled. See the recipe's Going further section.