UNPKG

@promptbook/remote-server

Version:

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

15 lines (14 loc) 507 B
import type { LlmExecutionTools } from '../../execution/LlmExecutionTools'; import type { DeepseekExecutionToolsOptions } from './DeepseekExecutionToolsOptions'; /** * Execution Tools for calling Deepseek API. * * @public exported from `@promptbook/deepseek` */ export declare const createDeepseekExecutionTools: ((options: DeepseekExecutionToolsOptions) => LlmExecutionTools) & { packageName: string; className: string; }; /** * TODO: [🎶] Naming "constructor" vs "creator" vs "factory" */