@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
12 lines (11 loc) • 462 B
TypeScript
import type { TODO_any } from '../../../../utils/organization/TODO_any';
import type { TeamToolResult } from './TeamToolResult';
/**
* Parses TEAM tool result payload and validates teammate metadata presence.
*
* @param resultRaw - Decoded tool result payload.
* @returns TEAM payload or `null` when shape does not match.
*
* @private function of toolCallParsing
*/
export declare function parseTeamToolResult(resultRaw: TODO_any): TeamToolResult | null;