diff options
author | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-12 20:28:54 +0200 |
---|---|---|
committer | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-12 20:28:54 +0200 |
commit | 1e8bbaaaa9750f74a2446ea069c9508cc8fc6eac (patch) | |
tree | dddf2fc53a73980d4fb4ebe8f38176bc8e5df4f6 /g4f/Provider/__init__.py | |
parent | ~ | g4f `v-0.1.6.2` (diff) | |
download | gpt4free-1e8bbaaaa9750f74a2446ea069c9508cc8fc6eac.tar gpt4free-1e8bbaaaa9750f74a2446ea069c9508cc8fc6eac.tar.gz gpt4free-1e8bbaaaa9750f74a2446ea069c9508cc8fc6eac.tar.bz2 gpt4free-1e8bbaaaa9750f74a2446ea069c9508cc8fc6eac.tar.lz gpt4free-1e8bbaaaa9750f74a2446ea069c9508cc8fc6eac.tar.xz gpt4free-1e8bbaaaa9750f74a2446ea069c9508cc8fc6eac.tar.zst gpt4free-1e8bbaaaa9750f74a2446ea069c9508cc8fc6eac.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/__init__.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/g4f/Provider/__init__.py b/g4f/Provider/__init__.py index 50ac3181..a584f66e 100644 --- a/g4f/Provider/__init__.py +++ b/g4f/Provider/__init__.py @@ -14,10 +14,13 @@ 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 +62,7 @@ class ProviderUtils: 'ChatgptAi': ChatgptAi, 'ChatgptDemo': ChatgptDemo, 'ChatgptDuo': ChatgptDuo, + 'ChatgptFree': ChatgptFree, 'ChatgptLogin': ChatgptLogin, 'ChatgptX': ChatgptX, 'CodeLinkAva': CodeLinkAva, @@ -70,6 +74,7 @@ class ProviderUtils: 'Forefront': Forefront, 'FreeGpt': FreeGpt, 'GPTalk': GPTalk, + 'GptChatly': GptChatly, 'GetGpt': GetGpt, 'GptForLove': GptForLove, 'GptGo': GptGo, @@ -121,6 +126,7 @@ __all__ = [ 'ChatgptAi', 'ChatgptDemo', 'ChatgptDuo', + 'ChatgptFree', 'ChatgptLogin', 'ChatgptX', 'Cromicle', @@ -130,6 +136,7 @@ __all__ = [ 'Forefront', 'FreeGpt', 'GPTalk', + 'GptChatly', 'GptForLove', 'GetGpt', 'GptGo', @@ -156,4 +163,4 @@ __all__ = [ 'FastGpt', 'Wuguokai', 'V50' -]
\ No newline at end of file +] |