@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
15 lines (14 loc) • 502 B
TypeScript
import type { LlmExecutionTools } from '../../execution/LlmExecutionTools';
import type { GoogleExecutionToolsOptions } from './GoogleExecutionToolsOptions';
/**
* Execution Tools for calling Google Gemini API.
*
* @public exported from `@promptbook/google`
*/
export declare const createGoogleExecutionTools: ((options: GoogleExecutionToolsOptions) => LlmExecutionTools) & {
packageName: string;
className: string;
};
/**
* TODO: [🎶] Naming "constructor" vs "creator" vs "factory"
*/