Files
copilotkit__copilotkit/examples/slack/app/tools/render-diagram.tsx
Alem Tuzlak 319d0ec78a feat(examples/slack): wire frontend tools into the TanStack agent + tidy render output
- runtime.ts: pass the bridge's forwarded client tools (convertInputToTanStackAI's
  tools) into chat() alongside web_search + MCP, so generative-UI cards and the
  confirm_write HITL gate work; drop the prompt line that made the model narrate
  charts with a trailing "Charting …" sentence (it landed after the image).
- render-chart / render-diagram: post the caption as a header BEFORE the image
  (a file upload's message lands a beat after postFile resolves, so caption-first
  keeps a stable caption → image order) and drop the false "rendered above" wording.

Depends on the @copilotkit/runtime factory tool-lifecycle fix (#5572) and the
bot-slack HITL/render-order fix (#5573).
2026-06-19 14:05:01 +02:00

69 lines
2.5 KiB
TypeScript

/**
* `render_diagram` — the agent emits Mermaid source; we render it to a PNG
* locally (headless Chromium) and deliver it to the thread via `ctx.thread.postFile`.
* On invalid Mermaid the tool returns the parser error so the agent can fix
* and retry rather than posting a broken image. After a successful upload we
* also post a small JSX caption card (`<Context>`) so the tool doubles as a
* render-tool demo.
*/
import { z } from "zod";
import { Context } from "@copilotkit/bot-ui";
import { defineBotTool } from "@copilotkit/bot";
import { renderDiagram } from "../render/diagram.js";
const schema = z.object({
title: z
.string()
.optional()
.describe("Short title shown as the image's filename/caption."),
mermaid: z
.string()
.describe(
"Mermaid diagram source. e.g. 'flowchart TD\\n A[Alert] --> B{Sev?}\\n " +
"B -->|1| C[Page owner]'. Supports flowchart, sequence, state, etc.",
),
});
function slug(s: string): string {
return (
(s || "diagram")
.replace(/[^a-z0-9]+/gi, "-")
.replace(/^-|-$/g, "")
.toLowerCase() || "diagram"
);
}
export const renderDiagramTool = defineBotTool({
name: "render_diagram",
description:
"Render a Mermaid diagram as an image and post it to the conversation " +
"thread. Pass Mermaid source (flowchart/sequence/state/etc). Use this to " +
"diagram a flow, architecture, or incident timeline. The image renders " +
"inline in the conversation.",
parameters: schema,
async handler({ title, mermaid }, ctx) {
try {
const png = await renderDiagram(mermaid);
// Post the caption as a HEADER first, then the image (see render-chart:
// a file upload's message lands a beat after `postFile` resolves, so
// caption-first keeps a stable caption → image order).
await ctx.thread.post(
<Context>{`📐 *${title ?? "Diagram"}* — diagram below.`}</Context>,
);
const res = await ctx.thread.postFile({
bytes: png,
filename: `${slug(title ?? "diagram")}.png`,
title: title ?? "Diagram",
altText: title ?? "Generated diagram",
});
if (!res.ok) {
return `Diagram render failed: ${res.error ?? "upload was rejected"}. Fix the Mermaid syntax and retry.`;
}
return "Rendered and posted the diagram image to the thread.";
} catch (e) {
// Surface the Mermaid parse error so the agent can repair the source.
return `Diagram render failed: ${(e as Error).message}. Fix the Mermaid syntax and retry.`;
}
},
});