summaryrefslogtreecommitdiffstats
path: root/g4f
diff options
context:
space:
mode:
authorkqlio67 <kqlio67@users.noreply.github.com>2024-11-01 17:09:27 +0100
committerkqlio67 <kqlio67@users.noreply.github.com>2024-11-01 17:09:27 +0100
commitb0180bfc15d2ef78dca955799027f26cc281d293 (patch)
tree1cc7386d87216ea15b137b71aa6cd07212e6ab1d /g4f
parentUpdate (g4f/Provider/Airforce.py) (diff)
downloadgpt4free-b0180bfc15d2ef78dca955799027f26cc281d293.tar
gpt4free-b0180bfc15d2ef78dca955799027f26cc281d293.tar.gz
gpt4free-b0180bfc15d2ef78dca955799027f26cc281d293.tar.bz2
gpt4free-b0180bfc15d2ef78dca955799027f26cc281d293.tar.lz
gpt4free-b0180bfc15d2ef78dca955799027f26cc281d293.tar.xz
gpt4free-b0180bfc15d2ef78dca955799027f26cc281d293.tar.zst
gpt4free-b0180bfc15d2ef78dca955799027f26cc281d293.zip
Diffstat (limited to 'g4f')
-rw-r--r--g4f/Provider/AIChatFree.py2
-rw-r--r--g4f/Provider/AiChats.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/g4f/Provider/AIChatFree.py b/g4f/Provider/AIChatFree.py
index 71c04681..6f4b8560 100644
--- a/g4f/Provider/AIChatFree.py
+++ b/g4f/Provider/AIChatFree.py
@@ -14,7 +14,7 @@ from .base_provider import AsyncGeneratorProvider, ProviderModelMixin
class AIChatFree(AsyncGeneratorProvider, ProviderModelMixin):
url = "https://aichatfree.info/"
- working = True
+ working = False
supports_stream = True
supports_message_history = True
default_model = 'gemini-pro'
diff --git a/g4f/Provider/AiChats.py b/g4f/Provider/AiChats.py
index 08492e24..7ff25639 100644
--- a/g4f/Provider/AiChats.py
+++ b/g4f/Provider/AiChats.py
@@ -11,7 +11,7 @@ from .helper import format_prompt
class AiChats(AsyncGeneratorProvider, ProviderModelMixin):
url = "https://ai-chats.org"
api_endpoint = "https://ai-chats.org/chat/send2/"
- working = True
+ working = False
supports_message_history = True
default_model = 'gpt-4'
models = ['gpt-4', 'dalle']