UNPKG
jcrewai
Version:
latest (0.1.0)
0.1.0
Multi-agent automation framework written in TypeScript. Patterned after CrewAI.
jcrewai
/
dist
/
agents
/
AgentFinish.d.ts
7 lines
(6 loc)
•
187 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
declare
class
AgentFinish
{
readonly
thought:
string
;
readonly
output:
string
;
readonly
text:
string
;
constructor
(
thought
:
string
,
output
:
string
,
text
:
string
); }