@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
11 lines (10 loc) • 409 B
TypeScript
import type { ToolCall } from '../../types/ToolCall';
/**
* Builds a deterministic idempotency key for tool calls so the UI can track updates.
*
* @param toolCall - Tool call payload or snapshot.
* @returns Stable key that identifies the same tool call instance.
*
* @private internal helper for tool call streaming
*/
export declare function resolveToolCallIdempotencyKey(toolCall: ToolCall): string;