UNPKG

@promptbook/markdown-utils

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

16 lines (15 loc) 589 B
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: !!!!! Rename to `createGoogleLlmExecutionTools`, `...GoogleLlmExecutionTools` * TODO: [🎶] Naming "constructor" vs "creator" vs "factory" */