diff options
author | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-15 19:10:25 +0200 |
---|---|---|
committer | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-15 19:10:25 +0200 |
commit | c1adfbee8e15406dbdce75f87de47dc1c0dd17df (patch) | |
tree | ec8be1ecf785cfd2f8dd0c5592b0e79a291116e0 /g4f/Provider/__init__.py | |
parent | ~ (diff) | |
download | gpt4free-c1adfbee8e15406dbdce75f87de47dc1c0dd17df.tar gpt4free-c1adfbee8e15406dbdce75f87de47dc1c0dd17df.tar.gz gpt4free-c1adfbee8e15406dbdce75f87de47dc1c0dd17df.tar.bz2 gpt4free-c1adfbee8e15406dbdce75f87de47dc1c0dd17df.tar.lz gpt4free-c1adfbee8e15406dbdce75f87de47dc1c0dd17df.tar.xz gpt4free-c1adfbee8e15406dbdce75f87de47dc1c0dd17df.tar.zst gpt4free-c1adfbee8e15406dbdce75f87de47dc1c0dd17df.zip |
Diffstat (limited to '')
-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', |