@promptbook/remote-server
Version:
It's time for a paradigm shift. The future of software in plain English, French or Latin
10 lines (9 loc) • 507 B
TypeScript
import type { createGoogleGenerativeAI } from '@ai-sdk/google';
import type { VercelExecutionToolsOptions } from '../vercel/VercelExecutionToolsOptions';
/**
* Options for `GoogleExecutionTools`
*
* 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];