summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--g4f/Provider/__init__.py1
-rw-r--r--g4f/Provider/not_working/AIChatFree.py (renamed from g4f/Provider/AIChatFree.py)10
-rw-r--r--g4f/Provider/not_working/__init__.py1
3 files changed, 6 insertions, 6 deletions
diff --git a/g4f/Provider/__init__.py b/g4f/Provider/__init__.py
index 5a0196d3..368c4a25 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 .AIChatFree import AIChatFree
from .AIUncensored import AIUncensored
from .Allyfy import Allyfy
from .AiMathGPT import AiMathGPT
diff --git a/g4f/Provider/AIChatFree.py b/g4f/Provider/not_working/AIChatFree.py
index 6f4b8560..a4f80d47 100644
--- a/g4f/Provider/AIChatFree.py
+++ b/g4f/Provider/not_working/AIChatFree.py
@@ -5,11 +5,11 @@ from hashlib import sha256
from aiohttp import BaseConnector, ClientSession
-from ..errors import RateLimitError
-from ..requests import raise_for_status
-from ..requests.aiohttp import get_connector
-from ..typing import AsyncResult, Messages
-from .base_provider import AsyncGeneratorProvider, ProviderModelMixin
+from ...errors import RateLimitError
+from ...requests import raise_for_status
+from ...requests.aiohttp import get_connector
+from ...typing import AsyncResult, Messages
+from ..base_provider import AsyncGeneratorProvider, ProviderModelMixin
class AIChatFree(AsyncGeneratorProvider, ProviderModelMixin):
diff --git a/g4f/Provider/not_working/__init__.py b/g4f/Provider/not_working/__init__.py
index 9dcc85d0..e1da3032 100644
--- a/g4f/Provider/not_working/__init__.py
+++ b/g4f/Provider/not_working/__init__.py
@@ -1,5 +1,6 @@
from .Ai4Chat import Ai4Chat
from .AI365VIP import AI365VIP
+from .AIChatFree import AIChatFree
from .AiChatOnline import AiChatOnline
from .AiChats import AiChats
from .AmigoChat import AmigoChat