UNPKG

crewai-ts

Version:

TypeScript port of crewAI for agent-based workflows

13 lines 476 B
/** * LLM Module * * Provides interfaces and implementations for language model interactions, * optimized for performance, reliability, and efficient resource usage. */ export * from './BaseLLM.js'; export * from './providers/index.js'; import { OpenAILLM, OpenAILLMConfig } from './providers/OpenAILLM.js'; export { OpenAILLM, OpenAILLMConfig }; export { OpenAILLM as OpenAIChat }; export type { OpenAILLMConfig as OpenAIChatConfig }; //# sourceMappingURL=index.d.ts.map