UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

11 lines (10 loc) 353 B
import type { ToolCall } from '../../types/ToolCall'; /** * Builds a stable identity string for tool calls across partial updates. * * @param toolCall - Tool call entry to identify. * @returns Stable identity string for deduplication. * * @private function of `<Chat/>` */ export declare function getToolCallIdentity(toolCall: ToolCall): string;