diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2023-12-01 23:56:12 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2023-12-01 23:56:12 +0100 |
commit | e74af803e7add7790b366545f1fe6c80934de798 (patch) | |
tree | 4cdd527acfd2e5514a3ca638c136a0c5d59faf04 /g4f/Provider/__init__.py | |
parent | Added new provider PI (Hacky way to use) (#1291) (diff) | |
download | gpt4free-e74af803e7add7790b366545f1fe6c80934de798.tar gpt4free-e74af803e7add7790b366545f1fe6c80934de798.tar.gz gpt4free-e74af803e7add7790b366545f1fe6c80934de798.tar.bz2 gpt4free-e74af803e7add7790b366545f1fe6c80934de798.tar.lz gpt4free-e74af803e7add7790b366545f1fe6c80934de798.tar.xz gpt4free-e74af803e7add7790b366545f1fe6c80934de798.tar.zst gpt4free-e74af803e7add7790b366545f1fe6c80934de798.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/g4f/Provider/__init__.py b/g4f/Provider/__init__.py index 199b4f27..efc94613 100644 --- a/g4f/Provider/__init__.py +++ b/g4f/Provider/__init__.py @@ -44,6 +44,7 @@ from .OnlineGpt import OnlineGpt from .Opchatgpts import Opchatgpts from .PerplexityAi import PerplexityAi from .Phind import Phind +from .Pi import Pi from .TalkAi import TalkAi from .Vercel import Vercel from .Ylokh import Ylokh @@ -65,10 +66,9 @@ __providers__: list[type[BaseProvider]] = [ __all__: list[str] = [ provider.__name__ for provider in __providers__ ] -__map__: dict[str, BaseProvider] = dict([ +__map__: dict[str, type[BaseProvider]] = dict([ (provider.__name__, provider) for provider in __providers__ ]) class ProviderUtils: - convert: dict[str, BaseProvider] = __map__ -from .PI import PI
\ No newline at end of file + convert: dict[str, type[BaseProvider]] = __map__
\ No newline at end of file |