UNPKG

agentis

Version:

A TypeScript framework for building sophisticated multi-agent systems

9 lines (8 loc) 232 B
import { ITool, ToolOutput } from './ITool'; export declare class AnthropicTool implements ITool { name: string; description: string; private client; constructor(); execute(input: string): Promise<ToolOutput>; }