@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
12 lines (11 loc) • 423 B
TypeScript
import type { LlmExecutionTools } from '../../execution/LlmExecutionTools';
import type { OllamaExecutionToolsOptions } from './OllamaExecutionToolsOptions';
/**
* Execution Tools for calling Ollama API
*
* @public exported from `@promptbook/ollama`
*/
export declare const createOllamaExecutionTools: ((options: OllamaExecutionToolsOptions) => LlmExecutionTools) & {
packageName: string;
className: string;
};