jcrewai
Version:
Multi-agent automation framework written in TypeScript. Patterned after CrewAI.
14 lines (13 loc) • 378 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AgentAction = void 0;
class AgentAction {
constructor(thought, tool, toolInput, text, result) {
this.thought = thought;
this.tool = tool;
this.toolInput = toolInput;
this.text = text;
this.result = result;
}
}
exports.AgentAction = AgentAction;