UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

12 lines (11 loc) 436 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; };