UNPKG
jcrewai
Version:
latest (0.1.0)
0.1.0
Multi-agent automation framework written in TypeScript. Patterned after CrewAI.
jcrewai
/
dist
/
agents
/
AgentFinish.js
12 lines
(11 loc)
•
299 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
AgentFinish
=
void
0
;
class
AgentFinish
{
constructor
(
thought, output, text
) {
this
.
thought
= thought;
this
.
output
= output;
this
.
text
= text; } }
exports
.
AgentFinish
=
AgentFinish
;