UNPKG

@promptbook/gemini

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

12 lines (11 loc) 476 B
import type { createOpenAI } from '@ai-sdk/openai'; import type { CommonToolsOptions } from '../../execution/CommonToolsOptions'; import type { LlmExecutionTools } from '../../execution/LlmExecutionTools'; type ProviderV1 = ReturnType<typeof createOpenAI>; /** * !!!!!! * * @public exported from `@promptbook/vercel` */ export declare function createExecutionToolsFromVercelProvider(vercelProvider: ProviderV1, options?: CommonToolsOptions): LlmExecutionTools; export {};