UNPKG

agentis

Version:

A TypeScript framework for building sophisticated multi-agent systems

15 lines (14 loc) 295 B
export type AgentConfig = { id: string; name: string; lore: string; role: string; goals: string[]; tools?: any[]; model?: { provider: 'anthropic' | 'openai' | 'google'; name: string; temperature?: number; maxTokens?: number; }; };