MCPcopy Create free account
hub / github.com/Qinbf/groundmap / ToolCallVizData

Interface ToolCallVizData

tools/debug-console/components/ToolCallCard.tsx:13–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11import { useT } from "@/lib/i18n-client";
12
13export interface ToolCallVizData {
14 id: string;
15 name: string;
16 args: Record<string, unknown>;
17 result?: {
18 ok: boolean;
19 data?: unknown;
20 error?: string;
21 duration_ms: number;
22 };
23 synthetic?: boolean;
24}
25
26function kbApiBase(): string {
27 if (typeof window !== "undefined") {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected