@promptbook/openai
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
15 lines (14 loc) • 689 B
TypeScript
import { ToolFunction } from '../../_packages/types.index';
import { string_javascript_name } from '../../types/typeAliases';
/**
* Gets all function implementations provided by all commitments
*
* Note: This function is intended for server use, there is also equivalent `getAllCommitmentsToolFunctionsForBrowser` for browser use
*
* @public exported from `@promptbook/node`
*/
export declare function getAllCommitmentsToolFunctionsForNode(): Record<string_javascript_name, ToolFunction>;
/**
* Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment
* TODO: [🏓] Unite `xxxForServer` and `xxxForNode` naming
*/