From ad838f3295f4e0bc2e36c9841ea6b58e994d003c Mon Sep 17 00:00:00 2001 From: HuangHai <10402852@qq.com> Date: Sat, 26 Jul 2025 09:44:33 +0800 Subject: [PATCH] 'commit' --- dsLightRag/GeoGeBra/T1_QvqReadTiMu.py | 1 + dsLightRag/GeoGeBra/index.html | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dsLightRag/GeoGeBra/T1_QvqReadTiMu.py b/dsLightRag/GeoGeBra/T1_QvqReadTiMu.py index fa8bab46..3dd5b21b 100644 --- a/dsLightRag/GeoGeBra/T1_QvqReadTiMu.py +++ b/dsLightRag/GeoGeBra/T1_QvqReadTiMu.py @@ -64,6 +64,7 @@ if not satisfy_constraint(description): 注意: 1、GGB指令集中不要添加注释! 2、仔细检查原图中是线段还是直线,要严格进行识别! +3、仔细检查原图中的每一条边是否都正确进行了线段标识! """ # 创建聊天完成请求 completion = client.chat.completions.create( diff --git a/dsLightRag/GeoGeBra/index.html b/dsLightRag/GeoGeBra/index.html index b4c8dfa6..63912af6 100644 --- a/dsLightRag/GeoGeBra/index.html +++ b/dsLightRag/GeoGeBra/index.html @@ -88,10 +88,12 @@ // 添加清空画布功能 document.getElementById('clearCanvas').addEventListener('click', function () { if (window.ggbApi) { - if (confirm('确定要清空当前画布吗?')) { + if (confirm('确定要清空当前画布和指令输入框吗?')) { // 检查ggbApplet是否已加载 if (window.ggbApplet && window.ggbApplet.reset) { window.ggbApplet.reset(); + // 清空指令输入框 + document.getElementById('commandInput').value = ''; } else { alert('GeoGebra尚未完全加载,请稍候重试'); }