@promptbook/azure-openai
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 } from '../../../types/ToolCall';
/**
* Returns true when one tool call represents a user-facing action.
*
* @param toolCall - Tool call candidate.
* @returns Whether the tool call should be visible in chat progress and chips.
*
* @private internal utility of `<Chat/>`
*/
export declare function isVisibleChatToolCall(toolCall: Pick<ToolCall, 'name'>): boolean;