Skip to content

Intelli v0.2.3

Compare
Choose a tag to compare
@intelligentnode intelligentnode released this 09 Mar 17:06
· 69 commits to main since this release
1495f31

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