UNPKG

@promptbook/remote-server

Version:

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

12 lines (11 loc) 499 B
import { AgentLlmExecutionTools } from './AgentLlmExecutionTools'; import type { CreateAgentLlmExecutionToolsOptions } from './CreateAgentLlmExecutionToolsOptions'; /** * Creates new AgentLlmExecutionTools that wrap underlying LLM tools with agent-specific behavior * * @public exported from `@promptbook/core` */ export declare const createAgentLlmExecutionTools: ((options: CreateAgentLlmExecutionToolsOptions) => AgentLlmExecutionTools) & { packageName: string; className: string; };