UNPKG

jcrewai

Version:

Multi-agent automation framework written in TypeScript. Patterned after CrewAI.

18 lines (17 loc) 574 B
export * from './agents/AgentConfig'; export * from './agents/AgentOptions'; export * from './agents/BaseAgent'; export * from './agents/CrewAgentExecutor'; export * from './llms/BaseLlm'; export * from './llms/LlmOptions'; export * from './llms/third_party/OpenAiLlm'; export * from './project/CrewBase'; export * from './project/decorators'; export * from './tasks/BaseTask'; export * from './tasks/TaskConfig'; export * from './tasks/TaskOptions'; export * from './Crew'; export * from './Agent'; export * from './Task'; export * from './Process'; export * from './Llm';