UNPKG

@promptbook/remote-client

Version:

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

12 lines (11 loc) 470 B
import type { ToolCall } from '../../../../types/ToolCall'; import type { TODO_any } from '../../../../utils/organization/TODO_any'; /** * Parses tool call arguments into an object for UI rendering. * * @param toolCall - Tool call carrying raw arguments. * @returns Parsed argument map or an empty object. * * @private function of toolCallParsing */ export declare function parseToolCallArguments(toolCall: Pick<ToolCall, 'arguments'>): Record<string, TODO_any>;