UNPKG
jcrewai
Version:
latest (0.1.0)
0.1.0
Multi-agent automation framework written in TypeScript. Patterned after CrewAI.
jcrewai
/
dist
/
tasks
/
TaskOptions.d.ts
9 lines
(8 loc)
•
201 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
TaskConfig
}
from
'./TaskConfig'
;
export
interface
TaskOptions
{
config
?:
TaskConfig
;
description
?:
string
;
expectedOutput
?:
string
;
outputFile
?:
string
;
agent
?:
string
; }