mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-08 23:58:34 +00:00
- Implemented provider prefix routing for LLMs, allowing for native implementations of OpenAI, Anthropic, and Google Gemini. - Added fallback to LiteLLM if native implementations are unavailable. - Updated create_llm function to support provider prefixes and native preference settings. - Introduced new LLM classes for Claude and Gemini, ensuring compatibility with existing LLM interfaces. - Enhanced documentation for LLM utility functions to clarify usage and examples.
6 lines
98 B
Python
6 lines
98 B
Python
"""OpenAI LLM implementation for CrewAI."""
|
|
|
|
from .chat import OpenAILLM
|
|
|
|
__all__ = ["OpenAILLM"]
|