UNPKG

@promptbook/core

Version:

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

10 lines (9 loc) 497 B
import type { createDeepSeek } from '@ai-sdk/deepseek'; import type { VercelExecutionToolsOptions } from '../vercel/VercelExecutionToolsOptions'; /** * Options for `DeepseekExecutionTools` * * This combines options for Promptbook, Deepseek and Vercel together * @public exported from `@promptbook/deepseek` */ export type DeepseekExecutionToolsOptions = Omit<VercelExecutionToolsOptions, 'title' | 'description' | 'vercelProvider' | 'availableModels'> & Parameters<typeof createDeepSeek>[0];