XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/gpt4free

Update (g4f/Provider/not_working/)

4db68386
kqlio67 <kqlio67@users.noreply.github.com>
提交于

代码差异

4 个文件 +4 -4
Modified g4f/Provider/not_working/Ai4Chat.py +1 -1
@@ -14,7 +14,7 @@ class Ai4Chat(AsyncGeneratorProvider, ProviderModelMixin):
14 14 label = "AI4Chat"
15 15 url = "https://www.ai4chat.co"
16 16 api_endpoint = "https://www.ai4chat.co/generate-response"
17 working = True
17 working = False
18 18 supports_stream = True
19 19 supports_system_message = True
20 20 supports_message_history = True
Modified g4f/Provider/not_working/AiChatOnline.py +1 -1
@@ -11,7 +11,7 @@ class AiChatOnline(AsyncGeneratorProvider, ProviderModelMixin):
11 11 site_url = "https://aichatonline.org"
12 12 url = "https://aichatonlineorg.erweima.ai"
13 13 api_endpoint = "/aichatonline/api/chat/gpt"
14 working = True
14 working = False
15 15 default_model = 'gpt-4o-mini'
16 16
17 17 @classmethod
Modified g4f/Provider/not_working/Chatgpt4o.py +1 -1
@@ -9,7 +9,7 @@ from ..helper import format_prompt
9 9
10 10 class Chatgpt4o(AsyncProvider, ProviderModelMixin):
11 11 url = "https://chatgpt4o.one"
12 working = True
12 working = False
13 13 _post_id = None
14 14 _nonce = None
15 15 default_model = 'gpt-4o-mini-2024-07-18'
Modified g4f/Provider/not_working/GPROChat.py +1 -1
@@ -10,7 +10,7 @@ class GPROChat(AsyncGeneratorProvider, ProviderModelMixin):
10 10 label = "GPROChat"
11 11 url = "https://gprochat.com"
12 12 api_endpoint = "https://gprochat.com/api/generate"
13 working = True
13 working = False
14 14 supports_stream = True
15 15 supports_message_history = True
16 16 default_model = 'gemini-pro'