UNPKG
jcrewai
Version:
latest (0.1.0)
0.1.0
Multi-agent automation framework written in TypeScript. Patterned after CrewAI.
jcrewai
/
dist
/
agents
/
AgentOptions.d.ts
11 lines
(10 loc)
•
267 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
AgentConfig
}
from
'./AgentConfig'
;
import
{
BaseLlm
}
from
'../llms/BaseLlm'
;
export
interface
AgentOptions
{
config
?:
AgentConfig
;
role
?:
string
;
goal
?:
string
;
backstory
?:
string
;
llm
?:
string
|
BaseLlm
|
any
;
verbose
?:
boolean
; }