@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
12 lines (11 loc) • 431 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;
};