UNPKG
jcrewai
Version:
latest (0.1.0)
0.1.0
Multi-agent automation framework written in TypeScript. Patterned after CrewAI.
jcrewai
/
dist
/
tasks
/
TaskOutput.d.ts
11 lines
(10 loc)
•
260 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
OutputFormat
}
from
'./OutputFormat'
;
export
declare
class
TaskOutput
{
description
?:
string
;
name
?:
string
;
expectedOutput
?:
string
;
summary
?:
string
;
rawOutput
?:
string
;
agentName
?:
string
;
outputFormat
?:
OutputFormat
; }