diff options
author | Tekky <98614666+xtekky@users.noreply.github.com> | 2023-10-16 00:41:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-16 00:41:48 +0200 |
commit | 1168d66115cc3d8b25a99f8dee71fbf9871a57aa (patch) | |
tree | ec8be1ecf785cfd2f8dd0c5592b0e79a291116e0 /g4f/Provider/__init__.py | |
parent | ~ (diff) | |
parent | Add Llama2 and NoowAi Provider (diff) | |
download | gpt4free-1168d66115cc3d8b25a99f8dee71fbf9871a57aa.tar gpt4free-1168d66115cc3d8b25a99f8dee71fbf9871a57aa.tar.gz gpt4free-1168d66115cc3d8b25a99f8dee71fbf9871a57aa.tar.bz2 gpt4free-1168d66115cc3d8b25a99f8dee71fbf9871a57aa.tar.lz gpt4free-1168d66115cc3d8b25a99f8dee71fbf9871a57aa.tar.xz gpt4free-1168d66115cc3d8b25a99f8dee71fbf9871a57aa.tar.zst gpt4free-1168d66115cc3d8b25a99f8dee71fbf9871a57aa.zip |
Diffstat (limited to 'g4f/Provider/__init__.py')
-rw-r--r-- | g4f/Provider/__init__.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/g4f/Provider/__init__.py b/g4f/Provider/__init__.py index 26f523c7..ae6ca996 100644 --- a/g4f/Provider/__init__.py +++ b/g4f/Provider/__init__.py @@ -23,9 +23,10 @@ from .GptChatly import GptChatly from .GptForLove import GptForLove from .GptGo import GptGo from .GptGod import GptGod -from .H2o import H2o from .Liaobots import Liaobots +from .Llama2 import Llama2 from .Myshell import Myshell +from .NoowAi import NoowAi from .Opchatgpts import Opchatgpts from .Phind import Phind from .Vercel import Vercel @@ -82,9 +83,11 @@ class ProviderUtils: 'HuggingChat': HuggingChat, 'Komo': Komo, 'Liaobots': Liaobots, + 'Llama2': Llama2, 'Lockchat': Lockchat, 'MikuChat': MikuChat, 'Myshell': Myshell, + 'NoowAi': NoowAi, 'Opchatgpts': Opchatgpts, 'OpenAssistant': OpenAssistant, 'OpenaiChat': OpenaiChat, @@ -148,8 +151,10 @@ __all__ = [ 'H2o', 'HuggingChat', 'Liaobots', + 'Llama2', 'Lockchat', 'Myshell', + 'NoowAi', 'Opchatgpts', 'Raycast', 'OpenaiChat', |