diff options
author | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-26 21:32:49 +0200 |
---|---|---|
committer | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-26 21:43:20 +0200 |
commit | 0d1ae405cc24f3daafb783d758c019ef6731d3aa (patch) | |
tree | 38b81047c788b60458341b4a2cbda8fb7fd936aa /g4f/Provider/__init__.py | |
parent | Update README.md (diff) | |
download | gpt4free-0d1ae405cc24f3daafb783d758c019ef6731d3aa.tar gpt4free-0d1ae405cc24f3daafb783d758c019ef6731d3aa.tar.gz gpt4free-0d1ae405cc24f3daafb783d758c019ef6731d3aa.tar.bz2 gpt4free-0d1ae405cc24f3daafb783d758c019ef6731d3aa.tar.lz gpt4free-0d1ae405cc24f3daafb783d758c019ef6731d3aa.tar.xz gpt4free-0d1ae405cc24f3daafb783d758c019ef6731d3aa.tar.zst gpt4free-0d1ae405cc24f3daafb783d758c019ef6731d3aa.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/g4f/Provider/__init__.py b/g4f/Provider/__init__.py index 653b6026..60d3bd25 100644 --- a/g4f/Provider/__init__.py +++ b/g4f/Provider/__init__.py @@ -17,6 +17,7 @@ from .ChatgptFree import ChatgptFree from .ChatgptLogin import ChatgptLogin from .ChatgptX import ChatgptX from .Cromicle import Cromicle +from .DeepInfra import DeepInfra from .FakeGpt import FakeGpt from .FreeGpt import FreeGpt from .GPTalk import GPTalk @@ -70,6 +71,7 @@ class ProviderUtils: 'ChatgptX': ChatgptX, 'CodeLinkAva': CodeLinkAva, 'Cromicle': Cromicle, + 'DeepInfra': DeepInfra, 'DfeHub': DfeHub, 'EasyChat': EasyChat, 'Equing': Equing, @@ -144,6 +146,7 @@ __all__ = [ 'ChatgptLogin', 'ChatgptX', 'Cromicle', + 'DeepInfra', 'CodeLinkAva', 'DfeHub', 'EasyChat', |