New Features 🌟
- Support for ANTHROPIC Models: Our chatbot integration now supports advanced ANTHROPIC models, including those with large context windows.
- Chatbot Provider Enumeration: The selection of AI providers has been simplified through the use of enumerators.
- Minor Bug Fixes: Adjust the parameter order for the controllers.
Using the New Features 💻
ChatProvider
enum simplifies the selecting providers.
from intelli.function.chatbot import ChatProvider
# check available chatbot providers
for provider in ChatProvider:
print(provider.name)
Contributors