diff options
author | Heiner Lohaus <heiner@lohaus.eu> | 2023-09-21 20:10:59 +0200 |
---|---|---|
committer | Heiner Lohaus <heiner@lohaus.eu> | 2023-09-21 20:10:59 +0200 |
commit | e9f96ced9c534f313fd2d3b82b2464cd8424281a (patch) | |
tree | 5cf9db5b89d61f5e6c582d6e1129d7269669ed97 /g4f/Provider/__init__.py | |
parent | Fix create_event_loop function (diff) | |
download | gpt4free-e9f96ced9c534f313fd2d3b82b2464cd8424281a.tar gpt4free-e9f96ced9c534f313fd2d3b82b2464cd8424281a.tar.gz gpt4free-e9f96ced9c534f313fd2d3b82b2464cd8424281a.tar.bz2 gpt4free-e9f96ced9c534f313fd2d3b82b2464cd8424281a.tar.lz gpt4free-e9f96ced9c534f313fd2d3b82b2464cd8424281a.tar.xz gpt4free-e9f96ced9c534f313fd2d3b82b2464cd8424281a.tar.zst gpt4free-e9f96ced9c534f313fd2d3b82b2464cd8424281a.zip |
Diffstat (limited to 'g4f/Provider/__init__.py')
-rw-r--r-- | g4f/Provider/__init__.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/g4f/Provider/__init__.py b/g4f/Provider/__init__.py index 0ca22533..b9ee2544 100644 --- a/g4f/Provider/__init__.py +++ b/g4f/Provider/__init__.py @@ -38,10 +38,14 @@ from .FastGpt import FastGpt from .V50 import V50 from .Wuguokai import Wuguokai -from .base_provider import BaseProvider, AsyncProvider, AsyncGeneratorProvider +from .base_provider import BaseProvider, AsyncProvider, AsyncGeneratorProvider +from .retry_provider import RetryProvider __all__ = [ 'BaseProvider', + 'AsyncProvider', + 'AsyncGeneratorProvider', + 'RetryProvider', 'Acytoo', 'Aichat', 'Ails', |