UNPKG

@promptbook/anthropic-claude

Version:

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

11 lines (10 loc) 446 B
import type { ChatMessage } from '../types/ChatMessage'; /** * Maps tool-call state into friendly running copy used by simple modal sections. * * @param toolCall - Tool call currently rendered in the modal. * @returns Friendly progress message for the current tool state. * * @private function of ChatToolCallModal */ export declare function resolveToolCallProgressMessage(toolCall: NonNullable<ChatMessage['toolCalls']>[number]): string;