diff options
author | Tekky <98614666+xtekky@users.noreply.github.com> | 2023-10-13 12:33:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-13 12:33:57 +0200 |
commit | 99bc58ab9972e245527d1342ccea217bbf8c7004 (patch) | |
tree | 2a29e02cc993b155042c817735b3a3c81a92fb10 /g4f/Provider/__init__.py | |
parent | ~ | Merge pull request #1064 from Lin-jun-xiang/ignore_providers (diff) | |
parent | Deprecate ChatForAi (diff) | |
download | gpt4free-99bc58ab9972e245527d1342ccea217bbf8c7004.tar gpt4free-99bc58ab9972e245527d1342ccea217bbf8c7004.tar.gz gpt4free-99bc58ab9972e245527d1342ccea217bbf8c7004.tar.bz2 gpt4free-99bc58ab9972e245527d1342ccea217bbf8c7004.tar.lz gpt4free-99bc58ab9972e245527d1342ccea217bbf8c7004.tar.xz gpt4free-99bc58ab9972e245527d1342ccea217bbf8c7004.tar.zst gpt4free-99bc58ab9972e245527d1342ccea217bbf8c7004.zip |
Diffstat (limited to 'g4f/Provider/__init__.py')
-rw-r--r-- | g4f/Provider/__init__.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/g4f/Provider/__init__.py b/g4f/Provider/__init__.py index 50ac3181..86346851 100644 --- a/g4f/Provider/__init__.py +++ b/g4f/Provider/__init__.py @@ -9,15 +9,17 @@ from .AItianhu import AItianhu from .AItianhuSpace import AItianhuSpace from .Bing import Bing from .ChatBase import ChatBase -from .ChatForAi import ChatForAi from .Chatgpt4Online import Chatgpt4Online from .ChatgptAi import ChatgptAi from .ChatgptDemo import ChatgptDemo from .ChatgptDuo import ChatgptDuo +from .ChatgptFree import ChatgptFree +from .ChatgptLogin import ChatgptLogin from .ChatgptX import ChatgptX from .Cromicle import Cromicle from .FreeGpt import FreeGpt from .GPTalk import GPTalk +from .GptChatly import GptChatly from .GptForLove import GptForLove from .GptGo import GptGo from .GptGod import GptGod @@ -59,6 +61,7 @@ class ProviderUtils: 'ChatgptAi': ChatgptAi, 'ChatgptDemo': ChatgptDemo, 'ChatgptDuo': ChatgptDuo, + 'ChatgptFree': ChatgptFree, 'ChatgptLogin': ChatgptLogin, 'ChatgptX': ChatgptX, 'CodeLinkAva': CodeLinkAva, @@ -70,6 +73,7 @@ class ProviderUtils: 'Forefront': Forefront, 'FreeGpt': FreeGpt, 'GPTalk': GPTalk, + 'GptChatly': GptChatly, 'GetGpt': GetGpt, 'GptForLove': GptForLove, 'GptGo': GptGo, @@ -121,6 +125,7 @@ __all__ = [ 'ChatgptAi', 'ChatgptDemo', 'ChatgptDuo', + 'ChatgptFree', 'ChatgptLogin', 'ChatgptX', 'Cromicle', @@ -130,6 +135,7 @@ __all__ = [ 'Forefront', 'FreeGpt', 'GPTalk', + 'GptChatly', 'GptForLove', 'GetGpt', 'GptGo', @@ -156,4 +162,4 @@ __all__ = [ 'FastGpt', 'Wuguokai', 'V50' -]
\ No newline at end of file +] |