UNPKG

jcrewai

Version:

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

9 lines (8 loc) 279 B
export declare class AgentAction { readonly thought: string; readonly tool: string; readonly toolInput: string; readonly text: string; readonly result: string; constructor(thought: string, tool: string, toolInput: string, text: string, result: string); }