diff options
author | kqlio67 <kqlio67@users.noreply.github.com> | 2024-11-07 08:53:28 +0100 |
---|---|---|
committer | kqlio67 <kqlio67@users.noreply.github.com> | 2024-11-07 08:53:28 +0100 |
commit | 1041e4d9dd6f791e03c949737560f20ed2dbfc5e (patch) | |
tree | 8f44c33b7d14177f20412cf705c8e78766de0785 /g4f | |
parent | Merge pull request #4 from rkihacker/main (diff) | |
download | gpt4free-1041e4d9dd6f791e03c949737560f20ed2dbfc5e.tar gpt4free-1041e4d9dd6f791e03c949737560f20ed2dbfc5e.tar.gz gpt4free-1041e4d9dd6f791e03c949737560f20ed2dbfc5e.tar.bz2 gpt4free-1041e4d9dd6f791e03c949737560f20ed2dbfc5e.tar.lz gpt4free-1041e4d9dd6f791e03c949737560f20ed2dbfc5e.tar.xz gpt4free-1041e4d9dd6f791e03c949737560f20ed2dbfc5e.tar.zst gpt4free-1041e4d9dd6f791e03c949737560f20ed2dbfc5e.zip |
Diffstat (limited to 'g4f')
-rw-r--r-- | g4f/Provider/__init__.py | 1 | ||||
-rw-r--r-- | g4f/Provider/not_working/AI365VIP.py (renamed from g4f/Provider/AI365VIP.py) | 6 | ||||
-rw-r--r-- | g4f/Provider/not_working/__init__.py | 1 |
3 files changed, 4 insertions, 4 deletions
diff --git a/g4f/Provider/__init__.py b/g4f/Provider/__init__.py index f720a643..5a0196d3 100644 --- a/g4f/Provider/__init__.py +++ b/g4f/Provider/__init__.py @@ -11,7 +11,6 @@ from .needs_auth import * from .not_working import * from .local import * -from .AI365VIP import AI365VIP from .AIChatFree import AIChatFree from .AIUncensored import AIUncensored from .Allyfy import Allyfy diff --git a/g4f/Provider/AI365VIP.py b/g4f/Provider/not_working/AI365VIP.py index 511ad568..a4bac0e2 100644 --- a/g4f/Provider/AI365VIP.py +++ b/g4f/Provider/not_working/AI365VIP.py @@ -2,9 +2,9 @@ from __future__ import annotations from aiohttp import ClientSession -from ..typing import AsyncResult, Messages -from .base_provider import AsyncGeneratorProvider, ProviderModelMixin -from .helper import format_prompt +from ...typing import AsyncResult, Messages +from ..base_provider import AsyncGeneratorProvider, ProviderModelMixin +from ..helper import format_prompt class AI365VIP(AsyncGeneratorProvider, ProviderModelMixin): diff --git a/g4f/Provider/not_working/__init__.py b/g4f/Provider/not_working/__init__.py index 52c5c538..9dcc85d0 100644 --- a/g4f/Provider/not_working/__init__.py +++ b/g4f/Provider/not_working/__init__.py @@ -1,4 +1,5 @@ from .Ai4Chat import Ai4Chat +from .AI365VIP import AI365VIP from .AiChatOnline import AiChatOnline from .AiChats import AiChats from .AmigoChat import AmigoChat |