UNPKG

@assistant-ui/react

Version:

TypeScript/React library for AI Chat

12 lines 445 B
import { Unsubscribe } from "@assistant-ui/tap"; import { ToolCallMessagePartComponent } from "../../types"; export type ToolUIState = Record<string, ToolCallMessagePartComponent[]>; export type ToolUIApi = { getState(): ToolUIState; setToolUI(toolName: string, render: ToolCallMessagePartComponent): Unsubscribe; }; export type ToolUIMeta = { source: "root"; query: Record<string, never>; }; //# sourceMappingURL=ToolUI.d.ts.map