UNPKG

@promptbook/vercel

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

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; };