UNPKG

@promptbook/remote-client

Version:

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

14 lines (13 loc) 633 B
/** * Builds a deterministic TEAM tool name from the teammate label. * * The tool name is derived solely from the human-readable label so that it * remains stable and predictable regardless of internal technical identifiers. * * @param _teammateUrl - Canonical teammate URL (kept for API compatibility, not used). * @param teammateLabel - Human-readable teammate label used as the basis for the name. * @returns TEAM tool name derived from the label. * * @private internal utility of TEAM commitments and chat UI mapping */ export declare function createTeamToolName(_teammateUrl: string, teammateLabel?: string): string;