UNPKG

jcrewai

Version:

Multi-agent automation framework written in TypeScript. Patterned after CrewAI.

11 lines (10 loc) 267 B
import { AgentConfig } from './AgentConfig'; import { BaseLlm } from '../llms/BaseLlm'; export interface AgentOptions { config?: AgentConfig; role?: string; goal?: string; backstory?: string; llm?: string | BaseLlm | any; verbose?: boolean; }