UNPKG
jcrewai
Version:
latest (0.1.0)
0.1.0
Multi-agent automation framework written in TypeScript. Patterned after CrewAI.
jcrewai
/
dist
/
agents
/
AgentAction.d.ts
9 lines
(8 loc)
•
279 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
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
); }