From 3dc17dbcb1fb1d64c469deed1518d1817846b452 Mon Sep 17 00:00:00 2001 From: yxl <584911253@qq.com> Date: 星期三, 19 二月 2025 09:49:50 +0800 Subject: [PATCH] commit --- src/components/Chat/chatList.vue | 14 ++++ public/config/config.js | 3 src/views/chartView/index.vue | 104 ++++++++++++++++++++++------------ 3 files changed, 83 insertions(+), 38 deletions(-) diff --git a/public/config/config.js b/public/config/config.js index 73eb340..7e95a4d 100644 --- a/public/config/config.js +++ b/public/config/config.js @@ -16,7 +16,7 @@ // apiUrl: "http://103.135.160.14:5381/",0 // apiUrl: location.origin, // apiUrl: "http://192.168.11.194", - apiUrl:"http://103.135.160.14:7800", + // apiUrl:"http://103.135.160.14:7800", apiUrl:"/dev-api", apiRagUrl:"/rag-api", imgUrl: webHost + "/image/", @@ -25,6 +25,7 @@ modelLayer:"MilitaryFacilities",//"FW21", // modelUrl:"/data-api/gisserver/c3dserver/sedb_DESKTOP-D8L6U7M_NNSEM/tileset.json",//"妯″瀷鍦板潃", modelUrl:"/data-api/gisserver/c3dserver/sedb_DESKTOP-15DOTHJ_SEM4550/tileset.json", + // terrainUrl:"", terrainUrl:"https://tiles1.geovisearth.com/base/v1/terrain?token=486dac3bec56d7d7c2a581c150be2bd937462f1e8f3bc9c78b5658b396122405", modelBase: { url: "http://106.120.22.26:8013", diff --git a/src/components/Chat/chatList.vue b/src/components/Chat/chatList.vue index 117f048..5a815ca 100644 --- a/src/components/Chat/chatList.vue +++ b/src/components/Chat/chatList.vue @@ -113,6 +113,12 @@ </div> <div v-else-if="res.type == 'stream'"> <div + v-if="res.thinkMsg" + v-html="res.val" + class="think-markdown" + ></div> + <div + v-else v-html="res.val" class="markdown-container" ></div> @@ -430,6 +436,14 @@ .markdown-container { padding: 10px; white-space: pre-wrap; + color: #fff; + font-size: 16px; +} +.think-markdown { + font-size: 13px; + color: #ccc; + border-left: 1px solid #ccc; + padding-left: 5px; } </style> <style scoped> diff --git a/src/views/chartView/index.vue b/src/views/chartView/index.vue index 0fd05cc..f4f4ec2 100644 --- a/src/views/chartView/index.vue +++ b/src/views/chartView/index.vue @@ -108,12 +108,6 @@ this.setRagMoreList(res); } }); - // axios.get("http://192.168.11.89:12315/Markdown.md").then((response) => { - // if (response.status == 200) { - // console.log(response); - // this.setMarkDownInfo(response.data); - // } - // }); }, methods: { createSocket() { @@ -251,11 +245,6 @@ this.$store.state.setListColor = []; this.$store.state.showLenged = false; this.$store.state.showRelationBox = false; - - // const formData = new FormData(); - // formData.append("message", res); - // formData.append("lib_id", "No1"); - // formData.append("session_id", this.uuid.toString()); const formData = { message: res.replace(/\s+/g, ""), lib_id: "No1", @@ -281,22 +270,6 @@ this.setRagAgentIntention(obj, formData); } }); - - // var obj = { - // ai: "", - // create_time: msgData.getDate1(), - // human: res, - // sessionid: this.uuid, - // update_time: "", - // userid: 0, - // }; - // getAgentThistorySave(obj).then((response) => { - // if (response.code == 200) { - // obj.id = response.id; - // this.obj = obj; - // } - // this.setAgentIntention(obj, formData); - // }); }, //鍦板浘鐩稿叧闂瓟 async setAgentIntention(obj, formData) { @@ -425,8 +398,9 @@ // 灏嗘祦涓殑瀛楄妭鏁版嵁瑙g爜涓烘枃鏈瓧绗︿覆 const textDecoder = new TextDecoder(); let result = true; - let sendMsg = true; + let thinkMsg = false; let sqlValue = ""; + let afterText = ""; while (result) { // done琛ㄧず娴佹槸鍚﹀凡缁忓畬鎴愯鍙� value鍖呭惈璇诲彇鍒扮殑鏁版嵁鍧� const { done, value } = await reader.read(); @@ -441,25 +415,80 @@ //鍖呭惈</think>缁х画杈撳嚭 console.log(resText, "杩斿洖鐨勬暟鎹�"); if (resText.indexOf("<think>") > -1) { - sendMsg = false; - } - if (resText.indexOf("</think>") > -1) { - sendMsg = true; - let position = resText.indexOf("</think>"); - resText = resText.substring(position + "</think>".length); - } - if (sendMsg) { + resText = resText.replace(/<think>/, ""); + thinkMsg = true; sqlValue += resText; var rolMsg = [ { type: "stream", + thinkMsg: thinkMsg, val: marked(sqlValue), }, ]; this.refashMsg(rolMsg); + } else if (resText.indexOf("</think>") > -1) { + let position = resText.indexOf("</think>"); + //</think>涔嬪墠鐨勫唴瀹� + const beforeText = resText.substring(0, position); + //鍒锋柊 + sqlValue += beforeText; + var rolMsg = [ + { + type: "stream", + thinkMsg: thinkMsg, + val: marked(sqlValue), + }, + ]; + this.refashMsg(rolMsg); + thinkMsg = false; + // </think>涔嬪悗鐨勫唴瀹� + const afterT = resText.substring(position + "</think>".length); + //鍒锋柊 + if (afterT) { + afterText += afterT; + var rolMsg = [ + { + type: "stream", + thinkMsg: true, + val: marked(sqlValue), + }, + { + type: "stream", + thinkMsg: false, + val: marked(afterText), + }, + ]; + this.refashMsg(rolMsg); + } + } else { + if (thinkMsg) { + sqlValue += resText; + var rolMsg = [ + { + type: "stream", + thinkMsg: thinkMsg, + val: marked(sqlValue), + }, + ]; + this.refashMsg(rolMsg); + } else { + afterText += resText; + var rolMsg = [ + { + type: "stream", + thinkMsg: true, + val: marked(sqlValue), + }, + { + type: "stream", + thinkMsg: false, + val: marked(afterText), + }, + ]; + this.refashMsg(rolMsg); + } } } - // console.log(sqlValue, "杈撳嚭鎵�鏈夎繑鍥炴暟鎹�"); } catch (err) { var rolMsg = [ { @@ -470,6 +499,7 @@ this.refashMsg(rolMsg); } }, + setMapfunc(res, obj) { this.$store.state.showLenged = false; switch (res.func) { -- Gitblit v1.9.3