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

XFEstudio/gpt4free

Fix report errors, update demo model list

1ca889cb
hlohaus <983577+hlohaus@users.noreply.github.com>
提交于

代码差异

2 个文件 +1 -2
Modified g4f/gui/client/static/js/chat.v1.js +1 -1
@@ -2447,7 +2447,7 @@ async function api(ressource, args=null, files=null, message_id=null, scroll=tru
2447 2447 return;
2448 2448 }
2449 2449 } else if (args) {
2450 if (ressource in ("log", "usage")) {
2450 if (ressource == "log" || ressource == "usage") {
2451 2451 if (ressource == "log" && !document.getElementById("report_error").checked) {
2452 2452 return;
2453 2453 }
Modified g4f/models.py +0 -1
@@ -745,7 +745,6 @@ demo_models = {
745 745 qwen_2_vl_7b.name: [qwen_2_vl_7b, [HuggingFaceAPI]],
746 746 qvq_72b.name: [qvq_72b, [HuggingSpace]],
747 747 deepseek_r1.name: [deepseek_r1, [HuggingFace]],
748 claude_3_5_sonnet.name: [claude_3_5_sonnet, claude_3_5_sonnet.best_provider.providers],
749 748 command_r.name: [command_r, [HuggingSpace]],
750 749 command_r_plus.name: [command_r_plus, [HuggingSpace]],
751 750 command_r7b.name: [command_r7b, [HuggingSpace]],