@promptbook/utils
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
20 lines (19 loc) • 500 B
TypeScript
import type { ToolCall } from '../../../types/ToolCall';
/**
* Utility to format tool call information for user-friendly display.
*/
/**
* Technical to user-friendly tool names and emojis
*
* @private [🧠] Maybe public?
*/
export declare const TOOL_TITLES: Record<string, {
title: string;
emoji: string;
}>;
/**
* Gets the user-friendly text for a tool call chiplet.
*
* @private [🧠] Maybe public?
*/
export declare function getToolCallChipletText(toolCall: ToolCall): string;