返回提交历史
Modified
g4f/Provider/AIChatFree.py
+1
-1
Modified
g4f/Provider/AiChats.py
+1
-1
XFEstudio/gpt4free
Disconnected providers (g4f/Provider/AIChatFree.py g4f/Provider/AiChats.py)
b0180bfc
代码差异
2 个文件
+2
-2
@@ -14,7 +14,7 @@ from .base_provider import AsyncGeneratorProvider, ProviderModelMixin
14
14
15
15
class AIChatFree(AsyncGeneratorProvider, ProviderModelMixin):
16
16
url = "https://aichatfree.info/"
17
working = True
17
working = False
18
18
supports_stream = True
19
19
supports_message_history = True
20
20
default_model = 'gemini-pro'
@@ -11,7 +11,7 @@ from .helper import format_prompt
11
11
class AiChats(AsyncGeneratorProvider, ProviderModelMixin):
12
12
url = "https://ai-chats.org"
13
13
api_endpoint = "https://ai-chats.org/chat/send2/"
14
working = True
14
working = False
15
15
supports_message_history = True
16
16
default_model = 'gpt-4'
17
17
models = ['gpt-4', 'dalle']