@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
11 lines (10 loc) • 516 B
TypeScript
import type { createGoogleGenerativeAI } from '@ai-sdk/google';
import type { VercelExecutionToolsOptions } from '../vercel/VercelExecutionToolsOptions';
/**
* Options for `createGoogleExecutionTools`
*
* This combines options for Promptbook, Google and Vercel together
*
* @public exported from `@promptbook/google`
*/
export type GoogleExecutionToolsOptions = Omit<VercelExecutionToolsOptions, 'title' | 'description' | 'vercelProvider' | 'availableModels'> & Parameters<typeof createGoogleGenerativeAI>[0];