UNPKG

agentis

Version:

A TypeScript framework for building sophisticated multi-agent systems

7 lines (6 loc) 187 B
import { ITool, ToolOutput } from './ITool'; export declare class LLMTool implements ITool { name: string; description: string; execute(input: string): Promise<ToolOutput>; }