UNPKG

agentis

Version:

A TypeScript framework for building sophisticated multi-agent systems

15 lines (14 loc) 324 B
import { IAgent } from './IAgent'; import { ITool } from '../tools/ITool'; interface AgentConfig { id: string; name: string; lore: string; role: string; goals: string[]; tools?: ITool[]; } export declare class AgentFactory { static createAgent(config: AgentConfig): Promise<IAgent>; } export {};