@promptbook/google
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
11 lines (10 loc) • 351 B
TypeScript
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;