@promptbook/google
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
10 lines (9 loc) • 305 B
TypeScript
/**
* Builds a tool invocation script that injects hidden runtime context into tool args.
*
* @private utility of OpenAI tool execution wrappers
*/
export declare function buildToolInvocationScript(options: {
readonly functionName: string;
readonly functionArgsExpression: string;
}): string;