@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
11 lines (10 loc) • 393 B
TypeScript
import type { ToolCall, ToolCallState } from '../../../types/ToolCall';
/**
* Resolves one explicit or inferred lifecycle state for a tool call snapshot.
*
* @param toolCall - Tool call snapshot to inspect.
* @returns Resolved lifecycle state.
*
* @private internal helper for chat tool-call rendering
*/
export declare function resolveToolCallState(toolCall: ToolCall): ToolCallState;