lsc há 10 meses atrás
pai
commit
2ca7c7b9b0

+ 1 - 1
dist/index.html

@@ -32,7 +32,7 @@
       width: 100%;
       background: #e6eaf0;
       font-family: '黑体';
-    }</style><link href=./static/css/app.39bac6ead33d50f3ff3ae1405004738a.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.571c38d63f24b1ae9e16.js></script><script type=text/javascript src=./static/js/vendor.3cd0a0187ca1f70ded67.js></script><script type=text/javascript src=./static/js/app.4be4ccbb336f7bd8ba5f.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.a2541a70e742a921174f8b2a1327aae9.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.571c38d63f24b1ae9e16.js></script><script type=text/javascript src=./static/js/vendor.3cd0a0187ca1f70ded67.js></script><script type=text/javascript src=./static/js/app.fdbc537942bc2084761a.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

Diff do ficheiro suprimidas por serem muito extensas
+ 0 - 0
dist/static/css/app.a2541a70e742a921174f8b2a1327aae9.css


Diff do ficheiro suprimidas por serem muito extensas
+ 0 - 0
dist/static/css/app.a2541a70e742a921174f8b2a1327aae9.css.map


Diff do ficheiro suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/app.fdbc537942bc2084761a.js


Diff do ficheiro suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/app.fdbc537942bc2084761a.js.map


Diff do ficheiro suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/manifest.571c38d63f24b1ae9e16.js.map


+ 327 - 69
src/components/pages/aiAddCourse/addCourse.vue

@@ -349,7 +349,7 @@
                 <div class="c_info_title">
                   课程简要描述
                   <button class="c_pub_button_confirm" style="margin: 0 20px 0 auto;"
-                    @click="openAiDialog('aiDetail')">AI优化</button>
+                     @contextmenu.prevent="openAiDialog(1, 'aiDetail')" @click="openAiDialog(2, 'aiDetail')">AI优化</button>
                 </div>
                 <div style="width: 100%; padding: 0px 20px; box-sizing: border-box">
                   <div style="width: calc(100%)">
@@ -650,7 +650,7 @@
                         placeholder="请输入任务描述" v-model="item.taskDetail2"></textarea>
                       <div class="op_box">
                         <div class="op_remark">*可以将需要优化的建议添加在任务描述后,点击“智能优化”,自动进行修改</div>
-                        <div class="r_pub_button_op" @click="openAiDialog('aiDetail1',item.taskDetail2,index)">智能优化</div>
+                        <div class="r_pub_button_op" @contextmenu.prevent="openAiDialog(1, 'aiDetail1',item.taskDetail2,index)" @click="openAiDialog(2, 'aiDetail1',item.taskDetail2,index)">智能优化</div>
                       </div>
                     </div>
                   </div>
@@ -675,7 +675,7 @@
               <button class="c_pub_button_return pub_btn_last_img" v-if="steps > 1 && steps != 5" @click="lastSteps">
                 {{ steps == 4 ? "返回课程" : "上一步" }}
               </button>
-              <button class="c_pub_button_confirm" v-if="steps < 4" @click="nextSteps" :class="{
+              <button class="c_pub_button_confirm" v-if="steps < 4" @click="nextSteps(2)" @contextmenu.prevent="nextSteps(1)" :class="{
                 pub_btn_next_img: steps != 3,
                 pub_btn_finish_img: steps == 3,
               }">
@@ -1481,9 +1481,11 @@
                                   "></textarea> -->
                               <div class="op_box">
                                 <div class="op_remark">*可以将需要优化的建议添加在任务描述后,点击“智能优化”,自动进行修改</div>
-                                <div class="r_pub_button_op" @click="openAiDialog('aiDetail2',unitJson[unitIndex].chapterInfo[0].taskJson[
+                                <div class="r_pub_button_op" @contextmenu.prevent="openAiDialog(1, 'aiDetail2',unitJson[unitIndex].chapterInfo[0].taskJson[
+                                  itemTaskIndex
+                                ],itemTaskIndex)" @click="openAiDialog(2, 'aiDetail2',unitJson[unitIndex].chapterInfo[0].taskJson[
                                   itemTaskIndex
-                                ].taskDetail,itemTaskIndex)">智能优化</div>
+                                ],itemTaskIndex)">智能优化</div>
                               </div>
                             </div>
                           </div>
@@ -3141,7 +3143,7 @@
                                   " v-model="itemTool.toolDetail"></textarea>
                                 <div class="op_box">
                                   <div class="op_remark">*可以将需要优化的建议添加在工具描述后,点击“智能优化”,自动进行修改</div>
-                                  <div class="r_pub_button_op" @click="openAiDialog('aiDetail3',itemTool.toolDetail,itemTaskIndex, toolIndex)">智能优化</div>
+                                  <div class="r_pub_button_op" @contextmenu.prevent="openAiDialog(1, 'aiDetail3',itemTool,itemTaskIndex, toolIndex)" @click="openAiDialog(2, 'aiDetail3',itemTool.toolDetail,itemTaskIndex, toolIndex)">智能优化</div>
                                 </div>
                               </div>
                             </div>
@@ -3436,7 +3438,7 @@
                                 margin: 20px 0;
                               ">
                               <div class="lineTitle clineTitle">评价设置</div>
-                              <div class="r_pub_button_op" style="margin-left:auto;" @click="openAiDialog('aiDetail4',itemTask.eList,itemTaskIndex)">智能优化</div>
+                              <div class="r_pub_button_op" style="margin-left:auto;" @contextmenu.prevent="openAiDialog(1, 'aiDetail4',itemTask.eList,itemTaskIndex)" @click="openAiDialog(2, 'aiDetail4',itemTask.eList,itemTaskIndex)">智能优化</div>
                               <!-- <div class="line" style="width: 90%"></div> -->
                             </div>
                           </div>
@@ -5005,7 +5007,7 @@
     </evaBox>
     <EnglishVoice :oid="oid" :org="org" :EnglishVoiceDialog.sync="EnglishVoiceDialog"
       :englishVoiceJson="englishVoiceJson" @setEnglishVoiceJson="setEnglishVoiceJson"></EnglishVoice>
-    <aiDialog :dialogVisibleAiD.sync="dialogVisibleAiD" :aiText="aiText" @aiConfirm="aiConfirm"></aiDialog>
+    <aiDialog :dialogVisibleAiD.sync="dialogVisibleAiD" :aiText="aiText" @aiConfirm="aiConfirm" :clickType="clickType"></aiDialog>
   </div>
 </template>
 
@@ -5028,6 +5030,7 @@ import evaBox from "../evaBox/index.vue";
 import EnglishVoice from "../EnglishVoice/index.vue";
 import aiBox from './aiBox.vue'
 import aiDialog from './aiDialog'
+import { v4 as uuidv4 } from "uuid";
 
 export default {
   components: {
@@ -5079,6 +5082,7 @@ export default {
       isTeacherSee: false,
       courseText: "",
       textLoading: false,
+      ttextLoading: false,
       courseText2: "",
       preTime: 0,
       formLabelWidth: "100px",
@@ -5338,8 +5342,11 @@ export default {
       infoisAllSize: 0,
       infoprogress: 0,
       taskDetailLoading: [],
+      ttaskDetailLoading: [],
       taskDetailLoading2: [],
+      ttaskDetailLoading2: [],
       taskDetailLoading3: [],
+      ttaskDetailLoading3: [],
       taskDetailLoading4: [],
       dArray: {},
       dialogVisibleAiD: false,
@@ -5350,6 +5357,7 @@ export default {
       aiText: "",
       aiCallBack: "",
       aiIndex: "",
+      clickType: 1,
     };
   },
   directives: {
@@ -6018,12 +6026,12 @@ export default {
       }
       this.$refs.stepBox.scrollTop = 0;
     },
-    nextSteps() {
+    nextSteps(clickType) {
       // if (this.cidType == 1) {
       if (this.steps == 1) {
         if (this.courseName != "") {
           if (!this.isOutline) {
-            this.openAiDialog('aiOutline')
+            this.openAiDialog(clickType, 'aiOutline')
             return;
           }
           this.loading = true
@@ -6075,7 +6083,7 @@ export default {
             ## 补充参考资料
             补充资料:${url.join(",")}
             补充描述:${this.courseText2}`
-            this.aiGet4(msg, functionA)
+            this.aiGet4(msg, functionA, clickType)
           }
 
         } else {
@@ -12221,7 +12229,8 @@ export default {
           console.error(err);
         });
     },
-    openAiDialog(type, callback, index, tindex) {
+    openAiDialog(clickType, type, callback, index, tindex) {
+      this.clickType = clickType
       let sub = []
       if (this.courseTypeId.length) {
         for (var i = 0; i < this.courseTypeId.length; i++) {
@@ -12234,6 +12243,13 @@ export default {
         }
       }
       if (type == "aiDetail") {
+        if(this.ttextLoading){
+          this.$message({
+            message: "请回答完毕后再次发送",
+            type: "warning"
+          });
+          return;
+        }
         this.aitype = "aiDetail"
         this.aiText = `请根据${this.courseText}设计一个名为${this.courseName}的${sub.length ? sub.join(",") + "学科的" : ""},面向${this.getListClassC(this.checkboxList2)}的项目式学习课程。`
       } else if (type == "aiOutline") {
@@ -12244,24 +12260,46 @@ export default {
         this.aiText = `请根据${this.teacherText}。`
         this.aiCallBack = callback
       } else if (type == "aiDetail1") {
+        if(this.ttaskDetailLoading.indexOf('task-'+index) !== -1){
+          this.$message({
+            message: "请回答完毕后再次发送",
+            type: "warning"
+          });
+          return;
+        }
         this.aitype = "aiDetail1"
-        this.aiText = `请帮我优化下列文字内容,更具象化更详细,输出文本格式就行不要带有其他格式\n${callback}`
+        // this.aiText = `请帮我优化下列文字内容,更具象化更详细,输出文本格式就行不要带有其他格式\n${callback}`
+        this.aiText = `请根据${callback},重新设计该教学任务。任务需要至少50个token的详细描述,包含任务设计,评价标准 \n`
         this.aiIndex = index
       } else if (type == "aiDetail2") {
+        if(this.ttaskDetailLoading2.indexOf('task-'+index) !== -1){
+          this.$message({
+            message: "请回答完毕后再次发送",
+            type: "warning"
+          });
+          return;
+        }
         this.aitype = "aiDetail2"
-        this.aiText = `请帮我优化下列文字内容,更具象化更详细,输出文本格式就行不要带有其他格式\n${callback}`
+        this.aiText = `请你在考虑到整个课程的情况下,优化该任务描述和任务名:${callback.task}:${callback.taskDetail}`
         this.aiIndex = index
       } else if (type == "aiDetail3") {
+        if(this.ttaskDetailLoading3.indexOf('task-'+index+tindex) !== -1){
+          this.$message({
+            message: "请回答完毕后再次发送",
+            type: "warning"
+          });
+          return;
+        }
         this.aitype = "aiDetail3"
-        this.aiText = `请帮我优化下列文字内容,更具象化更详细,输出文本格式就行不要带有其他格式\n${callback}`
+        this.aiText = `请你在考虑到整个课程的情况下,**重点考虑该任务及工具名和工具内容的情况下**,优化工具指引。`
         this.aiIndex = index+'-'+tindex
       } else if (type == "aiDetail4") {
         var _text = ""
         for(var i = 0;i < callback.length; i++){
-          _text += `评价维度:${callback[i].value} 维度描述:${callback[i].detail} \n`
+          _text += `评价维度:${callback[i].value} 维度描述:${callback[i].detail} `
         }
         this.aitype = "aiDetail4"
-        this.aiText = `请帮我优化下列内容里的文字,更具象化更详细,输出数组格式\n${_text}`
+        this.aiText = `请你在考虑到整个课程的情况下,**重点考虑该任务详情**以及工具的情况下,优化评价标准。`
         this.aiIndex = index
       }
       this.dialogVisibleAiD = true
@@ -12282,7 +12320,7 @@ export default {
 
               --------
               ## 要求 
-              ${msg} 以及##补充参考资料,
+              ${msg} **你需要使用5EX教学活动设计框架,其定义参考#补充参考资料 中的5EX定义**。以及##补充参考资料,
               然后根据Format example的要求返回
 
               --------
@@ -12300,6 +12338,15 @@ export default {
 
               --------
               ## 补充参考资料
+              - 5EX定义:
+              # 角色介绍
+              5EX是一种跨学科学习活动设计模型,专门用于STEM(科学、技术、工程和数学)教育项目。它的核心理念是通过整合不同学科的知识和方法,解决真实情境中的问题,从而促进学生的全面发展。5EX模型包含以下五个关键环节:
+              1.EQ(Enter and Questions)- 进入情境与提出问题:此环节的目的让学生进入真实的问题情境中,提出问题和任务。教师可以通过多种活动方式,如阅读科普资料、观看相关视频、参观实际场所等,引导学生发现问题并思考。这一步骤强调问题驱动的学习,让学生以项目学习的方式参与主题学习。
+              2.EM(Exploration and Mathematics)- 探究学习与数学应用:在这个环节中,学生围绕提出的问题或任务,运用科学探究方法(如实验、观察、调查)和数学方法去寻求解决方案或解析问题。数学应用在此环节中是基础,帮助学生通过数据收集、分析和解释来理解问题和应用知识。
+              3.ET(Engineering and Technology)- 工程设计与技术制作:此环节让学生承担任务,通过工程设计和动手制作来完成任务。学生需要进行头脑风暴,提出解决方案,选择材料和工具,并合作完成成品制作。这个过程中,学生将体验完整的工程设计和技术制作流程,并通过测试和改进来完善自己的作品。
+              4.EC(Expansion and Creativity)- 知识扩展与创意设计:本环节鼓励学生将所学知识与社会需求相结合,提出更高要求的设计任务,激发学生的创新能力。学生需要进行创意设计,将知识应用于实际问题的解决中,从而扩展知识面并提出创新的设计方案。
+              5.ER(Evaluation and Reflection)- 多元评价与学习反思:此环节通过多元评价方式检验学生是否达到了学习目标,并提供课程改进的依据。评价不仅包括教师的评价,还涉及学生自评和同伴评价。此外,学生通过自我反思能够监控和掌握自己的学习状况,识别知识和能力掌握的程度,以及评估还需要参与的学习过程。
+
               补充资料:${url.join(",")}
               补充描述:${this.courseText2}
               `
@@ -12318,9 +12365,19 @@ export default {
 
             --------
             ## 输出格式与要求
+            - 任务名:
+            -  任务描述:该描述是教师给与学生的指示(用于指导学生如何进行每个教学活动),对应到学生活动,你应该用友好,但是又清晰明确的口吻来撰写。
+            - 评价标准:至少3条评价标准,这个评价是教师用来评价学生表现的,需要包含评价维度,以及该维度中教师期待学生的表现,句式为学生应该能....
+            - 平台工具:
+            -  工具名:**从工具列表**中选择0~2个工具用于学生阶段性成果提交:工具列表:[电子白板,文档,思维导图,表格,作业提交]
+            - 工具指引:以友好,明确的口吻告诉学生该如何使用该工具
+
+
+            --------
+            ## Format example
             [
               {
-                detail: "面向学生的任务描述",
+                detail: "该描述是教师给与学生的指示(用于指导学生如何进行每个教学活动),对应到学生活动,你应该用友好,但是又清晰明确的口吻来撰写。",
                 elist:[
                   {"value":"评价名字1","detail":"评价维度1","score":5},
                   {"value":"评价名字2","detail":"评价维度2","score":5},
@@ -12400,6 +12457,7 @@ export default {
     },
     detailYou(message) {
       this.textLoading = true
+      this.ttextLoading = true
       //       setTimeout(()=>{
       //         if(this.courseName == '热传递2'){
       //           this.courseText = `本项目旨在通过一个综合性的学习过程,让学生深入探究“热”的物理现象及其在日常生活中的应用。学生将通过实验、观察、设计和制作等活动,理解热的传递方式、热的良导体与不良导体的概念,以及保温技术的原理和应用。项目的核心是制作一个保温杯,该保温杯需要能够有效地减缓热量散失,保持水温在一定时间内相对稳定。通过这个项目,学生不仅能够巩固和拓展科学知识,还能培养创新思维、问题解决能力和团队合作精神。
@@ -12442,27 +12500,27 @@ export default {
 
         --------
         ## 要求
-        ${message} 以及##补充参考资料 以文本格式输出项目概况,驱动性问题,最终作品,格式参考##输出格式
-
-        --------
-        ## 输出格式
-        驱动性问题:1个驱动整个项目的问题
-        最终作品:对应解决驱动性问题的作品,可个人可团队
+        ${message} 以及##补充参考资料 以文本格式输出项目概况,驱动性问题,最终作品,格式参考## Format example
 
         --------
         ## 补充参考资料
         补充资料:${url.join(",")}
-        补充描述:${this.courseText2}`
-      this.aiGet(msg, () => {
-        this.textLoading = false
-      })
+        补充描述:${this.courseText2}
+
+        --------
+        ## Format example
+        -课程简要描述:
+        -驱动性问题:**1个**驱动整个项目的问题
+        -最终作品:对应解决驱动性问题的作品,可个人可团队`
+      this.aiGet(msg)
     },
     setUnitJson() {
       this.unitJson[0].chapterInfo[0].taskJson[0] = { "task": "观察热在水中的传递", "taskDetail": "同学们,今天我们将通过一个有趣的实验来探究热是如何在水中传递的。你将需要加热水并观察温度是如何分布的。请准备好实验器材,并按照安全指南进行操作。在实验过程中,请注意观察热水和冷水之间的相互作用,以及水温是如何随时间和空间变化的。你将需要记录你的观察结果,并思考热是如何从一个地方传递到另一个地方的。", "chapterData": [], "toolText": "", "toolChoose": [{ "tool": [1], "toolDetail": "使用电子白板工具来绘制你的实验设置和观察到的热传递过程。你可以使用电子白板的绘图功能来创建一个温度分布图,展示热水和冷水相遇时的情况。同时,你可以用它来记录实验步骤和关键观察点,以便于你和同学们进行讨论和分享。", "toolType": 1, "askCount": 1, "askTitle": "", "askJson": [{ "askstitle": "", "askItem": 1, "checkList": [] }], "isFold3": false }], "isShowTools": false, "askCount": 1, "isFold": 0, "askTitle": "", "askJson": [{ "askstitle": "", "askItem": 1, "checkList": [] }], "checkJson": [{ "checkCount": [], "checkPerent": [] }], "homeworkList": [], "toolOpen": true, "eList": [{ "value": "实验观察和记录", "detail": "学生应该能够准确地记录实验过程中的观察结果,包括水温变化和热传递的现象。", "score": 5 }, { "value": "数据分析和解释", "detail": "学生应该能够分析实验数据,解释热在水中的传递方式,并能够用自己的话描述热对流的原理。", "score": 5 }, { "value": "实验报告撰写", "detail": "学生应该能够撰写一份清晰的实验报告,包括实验目的、方法、结果和结论,以及对实验过程的反思。", "score": 5 }] }
       this.$forceUpdate()
     },
-    aiGet(messages, callback) {
+    aiGet(messages) {
       let _this = this
+      let _uuid = uuidv4();
       let params = JSON.stringify({
         // "model": "Chat",
         model: 'gpt-3.5-turbo',
@@ -12475,21 +12533,59 @@ export default {
           content: messages,
           role: 'user'
         }],
-        stream: false,
-        uid: this.userid,
+        uid: _uuid,
         mind_map_question: "",
       })
       _this.ajax.post('https://gpt4.cocorobo.cn/chat', params).then(function (response) {
         console.log(response);
-        let data = response.data.FunctionResponse
-        if (data.choices && data.choices.length && data.choices[0].message) {
-          _this.courseText = data.choices[0].message.content
+        // let data = response.data.FunctionResponse
+        // if (data.choices && data.choices.length && data.choices[0].message) {
+        //   _this.courseText = data.choices[0].message.content
+        // }
+        if (res.data.FunctionResponse.result == "发送成功") {
+        } else {
+          this.$message.warning(res.data.FunctionResponse.result);
         }
-        callback ? callback() : ''
+
       }).catch(function (error) {
-        callback ? callback() : ''
+        _this.textLoading = false
+        _this.ttextLoading = false
         console.log(error);
       });
+      _this.aiGetgetAiContent(_uuid)
+    },
+    aiGetgetAiContent(_uid) {
+      let _source = new EventSource(`https://gpt4.cocorobo.cn/stream/${_uid}`); //http://gpt4.cocorobo.cn:8011/stream/     https://gpt4.cocorobo.cn/stream/
+      let _allText = "";
+      let _mdText = "";
+      _source.onmessage = _e => {
+        if (_e.data.replace("'", "").replace("'", "") == "[DONE]") {
+          //对话已经完成
+          _mdText = _mdText.replace("_", "");
+          _source.close();
+          this.courseText = _mdText;
+          this.textLoading = false
+          this.ttextLoading = false
+          return;
+        } else {
+          //对话还在继续
+          let _text = "";
+          _text = _e.data.replaceAll("'", "");
+          if (_allText == "") {
+            _allText = _text.replace(/^\n+/, ""); //去掉回复消息中偶尔开头就存在的连续换行符
+          } else {
+            _allText += _text;
+          }
+          _mdText = _allText + "_";
+          _mdText = _mdText.replace(/\\n/g, "\n");
+          _mdText = _mdText.replace(/\\/g, "");
+          if (_allText.split("```").length % 2 == 0) _mdText += "\n```\n";
+          //转化返回的回复流数据
+          this.courseText = _mdText;
+          this.textLoading = false
+          // 处理流数据
+        }
+      };
     },
     aiGet2(messages, callback) {
       let _this = this
@@ -12627,7 +12723,7 @@ export default {
         console.log(error);
       });
     },
-    aiGet4(messages, callback) {
+    aiGet4(messages, callback, clickType) {
       let _this = this
       let params = JSON.stringify({
         // "model": "Chat",
@@ -12651,7 +12747,7 @@ export default {
         if (data.choices && data.choices.length && data.choices[0].message) {
           console.log(data.choices[0].message.content);
           _this.teacherText = data.choices[0].message.content
-          _this.openAiDialog("aiTask", callback)
+          _this.openAiDialog(clickType, "aiTask", callback)
         }
         // callback ? callback() : ''
         _this.loading = false
@@ -12664,13 +12760,26 @@ export default {
       let _this = this
       const _tindex = 'task-' + index
       const _tindex2 = index
+      let url = []
+      if (this.infoData.length) {
+        for (var i = 0; i < this.infoData.length; i++) {
+          url.push(this.infoData[i].url)
+        }
+      }
       let messages = `
       ATTENTION: Use '##' to SPLIT SECTIONS, not '#'.Output format carefully referenced "Format example".
 
       --------
       ## 要求
-      ${msg}`
+      ${msg} 以文本格式输出任务设计和评价标准
+        
+      ## 补充参考资料
+      - 补充资料:${url.join(",")}
+      - 补充描述:${this.courseText2}
+      `
       _this.taskDetailLoading.push(_tindex)
+      _this.ttaskDetailLoading.push(_tindex)
+      let _uuid = uuidv4();
       let params = JSON.stringify({
         // "model": "Chat",
         model: 'gpt-3.5-turbo',
@@ -12683,23 +12792,63 @@ export default {
           content: messages,
           role: 'user'
         }],
-        stream: false,
-        uid: this.userid,
+        uid: _uuid,
         mind_map_question: "",
       })
       _this.ajax.post('https://gpt4.cocorobo.cn/chat', params).then(function (response) {
         console.log(response);
-        let data = response.data.FunctionResponse
-        if (data.choices && data.choices.length && data.choices[0].message) {
-          console.log(data.choices[0].message.content);
-          _this.unitJson[0].chapterInfo[0].taskJson[_tindex2].taskDetail2 = data.choices[0].message.content
-          _this.$forceUpdate()
+        // let data = response.data.FunctionResponse
+        // if (data.choices && data.choices.length && data.choices[0].message) {
+        //   console.log(data.choices[0].message.content);
+        //   _this.unitJson[0].chapterInfo[0].taskJson[_tindex2].taskDetail2 = data.choices[0].message.content
+        //   _this.$forceUpdate()
+        // }
+
+        if (res.data.FunctionResponse.result == "发送成功") {
+        } else {
+          this.$message.warning(res.data.FunctionResponse.result);
         }
-        _this.taskDetailLoading.splice(_this.taskDetailLoading.indexOf(_tindex), 1)
+
+        // _this.taskDetailLoading.splice(_this.taskDetailLoading.indexOf(_tindex), 1)
       }).catch(function (error) {
         _this.taskDetailLoading.splice(_this.taskDetailLoading.indexOf(_tindex), 1)
+        _this.ttaskDetailLoading.splice(_this.ttaskDetailLoading.indexOf(_tindex), 1)
         console.log(error);
       });
+      _this.aiDetailgetAiContent(_uuid, _tindex, _tindex2)
+    },
+    aiDetailgetAiContent(_uid, loading, _tindex2) {
+      let _source = new EventSource(`https://gpt4.cocorobo.cn/stream/${_uid}`); //http://gpt4.cocorobo.cn:8011/stream/     https://gpt4.cocorobo.cn/stream/
+      let _allText = "";
+      let _mdText = "";
+      _source.onmessage = _e => {
+        if (_e.data.replace("'", "").replace("'", "") == "[DONE]") {
+          //对话已经完成
+          _mdText = _mdText.replace("_", "");
+          _source.close();
+          this.unitJson[0].chapterInfo[0].taskJson[_tindex2].taskDetail2 = _mdText;
+          this.taskDetailLoading.splice(this.taskDetailLoading.indexOf(loading), 1)
+          this.ttaskDetailLoading.splice(this.ttaskDetailLoading.indexOf(loading), 1)
+          return;
+        } else {
+          //对话还在继续
+          let _text = "";
+          _text = _e.data.replaceAll("'", "");
+          if (_allText == "") {
+            _allText = _text.replace(/^\n+/, ""); //去掉回复消息中偶尔开头就存在的连续换行符
+          } else {
+            _allText += _text;
+          }
+          _mdText = _allText + "_";
+          _mdText = _mdText.replace(/\\n/g, "\n");
+          _mdText = _mdText.replace(/\\/g, "");
+          if (_allText.split("```").length % 2 == 0) _mdText += "\n```\n";
+          //转化返回的回复流数据
+          this.unitJson[0].chapterInfo[0].taskJson[_tindex2].taskDetail2 = _mdText;
+          this.taskDetailLoading.splice(this.taskDetailLoading.indexOf(loading), 1)
+          // 处理流数据
+        }
+      };
     },
     aiDetail2(msg, index) {
       let _this = this
@@ -12710,8 +12859,14 @@ export default {
 
       --------
       ## 要求
-      ${msg} `
+      ${msg} 
+
+      # 输出格式与要求
+      - 任务名:
+      - 任务描述:该描述是教师给与学生的指示(用于指导学生如何进行教学活动),对应到学生活动,你应该用友好,但是又清晰明确的口吻来撰写。`
       _this.taskDetailLoading2.push(_tindex)
+      _this.ttaskDetailLoading2.push(_tindex)
+      let _uuid = uuidv4();
       let params = JSON.stringify({
         // "model": "Chat",
         model: 'gpt-3.5-turbo',
@@ -12724,37 +12879,87 @@ export default {
           content: messages,
           role: 'user'
         }],
-        stream: false,
-        uid: this.userid,
+        uid: _uuid,
         mind_map_question: "",
       })
       _this.ajax.post('https://gpt4.cocorobo.cn/chat', params).then(function (response) {
         console.log(response);
-        let data = response.data.FunctionResponse
-        if (data.choices && data.choices.length && data.choices[0].message) {
-          console.log(data.choices[0].message.content);
-          _this.unitJson[0].chapterInfo[0].taskJson[_tindex2].taskDetail = data.choices[0].message.content
-          _this.$forceUpdate()
+        // let data = response.data.FunctionResponse
+        // if (data.choices && data.choices.length && data.choices[0].message) {
+        //   console.log(data.choices[0].message.content);
+        //   _this.unitJson[0].chapterInfo[0].taskJson[_tindex2].taskDetail = data.choices[0].message.content
+        //   _this.$forceUpdate()
+        // }
+        // _this.taskDetailLoading2.splice(_this.taskDetailLoading.indexOf(_tindex), 1)
+        if (res.data.FunctionResponse.result == "发送成功") {
+        } else {
+          this.$message.warning(res.data.FunctionResponse.result);
         }
-        _this.taskDetailLoading2.splice(_this.taskDetailLoading.indexOf(_tindex), 1)
       }).catch(function (error) {
-        _this.taskDetailLoading2.splice(_this.taskDetailLoading.indexOf(_tindex), 1)
+        _this.taskDetailLoading2.splice(_this.taskDetailLoading2.indexOf(_tindex), 1)
+        _this.ttaskDetailLoading2.splice(_this.ttaskDetailLoading2.indexOf(_tindex), 1)
         console.log(error);
       });
+      _this.aiDetail2getAiContent(_uuid, _tindex, _tindex2)
+    },
+    aiDetail2getAiContent(_uid, loading, _tindex2) {
+      let _source = new EventSource(`https://gpt4.cocorobo.cn/stream/${_uid}`); //http://gpt4.cocorobo.cn:8011/stream/     https://gpt4.cocorobo.cn/stream/
+      let _allText = "";
+      let _mdText = "";
+      _source.onmessage = _e => {
+        if (_e.data.replace("'", "").replace("'", "") == "[DONE]") {
+          //对话已经完成
+          _mdText = _mdText.replace("_", "");
+          _source.close();
+          this.unitJson[0].chapterInfo[0].taskJson[_tindex2].taskDetail = _mdText;
+          this.taskDetailLoading2.splice(this.taskDetailLoading2.indexOf(loading), 1)
+          this.ttaskDetailLoading2.splice(this.ttaskDetailLoading2.indexOf(loading), 1)
+          return;
+        } else {
+          //对话还在继续
+          let _text = "";
+          _text = _e.data.replaceAll("'", "");
+          if (_allText == "") {
+            _allText = _text.replace(/^\n+/, ""); //去掉回复消息中偶尔开头就存在的连续换行符
+          } else {
+            _allText += _text;
+          }
+          _mdText = _allText + "_";
+          _mdText = _mdText.replace(/\\n/g, "\n");
+          _mdText = _mdText.replace(/\\/g, "");
+          if (_allText.split("```").length % 2 == 0) _mdText += "\n```\n";
+          //转化返回的回复流数据
+          this.unitJson[0].chapterInfo[0].taskJson[_tindex2].taskDetail = _mdText;
+          this.taskDetailLoading2.splice(this.taskDetailLoading2.indexOf(loading), 1)
+          // 处理流数据
+        }
+      };
     },
     aiDetail3(msg, index, tindex) {
       let _this = this
       const _tindex = 'task-' + index + tindex
       const _tindex2 = index
       const _tindex3 = tindex
+      // **重点考虑该任务及工具名和工具内容的情况下*
       let messages = `
       ATTENTION: Use '##' to SPLIT SECTIONS, not '#'.Output format carefully referenced "Format example".
 
+      --------
+      ## 参考内容
+      任务名称:${_this.unitJson[0].chapterInfo[0].taskJson[_tindex2].task}
+      任务描述:${_this.unitJson[0].chapterInfo[0].taskJson[_tindex2].taskDetail}
+      工具名称:${_this.unitJson[0].chapterInfo[0].taskJson[_tindex2].toolChoose[_tindex3].tool[0] ? _this.toolsData[_this.unitJson[0].chapterInfo[0].taskJson[_tindex2].toolChoose[_tindex3].tool[0]] : '无'}
+      工具内容:${_this.unitJson[0].chapterInfo[0].taskJson[_tindex2].toolChoose[_tindex3].toolDetail}
+
       --------
       ## 要求
-      ${msg}
-`
+      ${msg} 输出格式和内容要求参考#输出格式与要求
+
+      # 输出格式与要求
+      -工具指引:以友好,明确的口吻告诉学生该如何使用该工具`
       _this.taskDetailLoading3.push(_tindex)
+      _this.ttaskDetailLoading3.push(_tindex)
+      let _uuid = uuidv4();
       let params = JSON.stringify({
         // "model": "Chat",
         model: 'gpt-3.5-turbo',
@@ -12767,23 +12972,61 @@ export default {
           content: messages,
           role: 'user'
         }],
-        stream: false,
-        uid: this.userid,
+        uid: _uuid,
         mind_map_question: "",
       })
       _this.ajax.post('https://gpt4.cocorobo.cn/chat', params).then(function (response) {
         console.log(response);
         let data = response.data.FunctionResponse
-        if (data.choices && data.choices.length && data.choices[0].message) {
-          console.log(data.choices[0].message.content);
-          _this.unitJson[0].chapterInfo[0].taskJson[_tindex2].toolChoose[_tindex3].toolDetail = data.choices[0].message.content
-          _this.$forceUpdate()
+        // if (data.choices && data.choices.length && data.choices[0].message) {
+        //   console.log(data.choices[0].message.content);
+        //   _this.unitJson[0].chapterInfo[0].taskJson[_tindex2].toolChoose[_tindex3].toolDetail = data.choices[0].message.content
+        //   _this.$forceUpdate()
+        // }
+        // _this.taskDetailLoading3.splice(_this.taskDetailLoading3.indexOf(_tindex), 1)
+        if (res.data.FunctionResponse.result == "发送成功") {
+        } else {
+          this.$message.warning(res.data.FunctionResponse.result);
         }
-        _this.taskDetailLoading3.splice(_this.taskDetailLoading.indexOf(_tindex), 1)
       }).catch(function (error) {
-        _this.taskDetailLoading3.splice(_this.taskDetailLoading.indexOf(_tindex), 1)
+        _this.taskDetailLoading3.splice(_this.taskDetailLoading3.indexOf(_tindex), 1)
+        _this.ttaskDetailLoading3.splice(_this.ttaskDetailLoading3.indexOf(_tindex), 1)
         console.log(error);
       });
+      _this.aiDetail3getAiContent(_uuid, _tindex, _tindex2, _tindex3)
+    },
+    aiDetail3getAiContent(_uid, loading, _tindex2, _tindex3) {
+      let _source = new EventSource(`https://gpt4.cocorobo.cn/stream/${_uid}`); //http://gpt4.cocorobo.cn:8011/stream/     https://gpt4.cocorobo.cn/stream/
+      let _allText = "";
+      let _mdText = "";
+      _source.onmessage = _e => {
+        if (_e.data.replace("'", "").replace("'", "") == "[DONE]") {
+          //对话已经完成
+          _mdText = _mdText.replace("_", "");
+          _source.close();
+          this.unitJson[0].chapterInfo[0].taskJson[_tindex2].toolChoose[_tindex3].toolDetail = _mdText;
+          this.taskDetailLoading3.splice(this.taskDetailLoading3.indexOf(loading), 1)
+          this.ttaskDetailLoading3.splice(this.ttaskDetailLoading3.indexOf(loading), 1)
+          return;
+        } else {
+          //对话还在继续
+          let _text = "";
+          _text = _e.data.replaceAll("'", "");
+          if (_allText == "") {
+            _allText = _text.replace(/^\n+/, ""); //去掉回复消息中偶尔开头就存在的连续换行符
+          } else {
+            _allText += _text;
+          }
+          _mdText = _allText + "_";
+          _mdText = _mdText.replace(/\\n/g, "\n");
+          _mdText = _mdText.replace(/\\/g, "");
+          if (_allText.split("```").length % 2 == 0) _mdText += "\n```\n";
+          //转化返回的回复流数据
+          this.unitJson[0].chapterInfo[0].taskJson[_tindex2].toolChoose[_tindex3].toolDetail = _mdText;
+          this.taskDetailLoading3.splice(this.taskDetailLoading3.indexOf(loading), 1)
+          // 处理流数据
+        }
+      };
     },
     aiDetail4(msg, index) {
       if (!msg.length) {
@@ -12793,12 +13036,27 @@ export default {
       let _this = this
       const _tindex = 'task-' + index
       const _tindex2 = index
+      var _text = ""
+        for(var i = 0;i < _this.unitJson[0].chapterInfo[0].taskJson[_tindex2].eList.length; i++){
+          _text += `评价维度:${_this.unitJson[0].chapterInfo[0].taskJson[_tindex2].eList[i].value} 维度描述:${_this.unitJson[0].chapterInfo[0].taskJson[_tindex2].eList[i].detail} `
+        }
+      // **重点考虑该任务详情**
       let messages = `
       ATTENTION: Use '##' to SPLIT SECTIONS, not '#'.Output format carefully referenced "Format example".
 
+      --------
+      ## 参考内容
+      任务名称:${_this.unitJson[0].chapterInfo[0].taskJson[_tindex2].task}
+      任务描述:${_this.unitJson[0].chapterInfo[0].taskJson[_tindex2].taskDetail}
+      评价设计:${_text}
+
       --------
       ## 要求
-      ${msg}
+      ${msg} 输出格式和内容要求参考# 输出格式与要求
+
+      --------
+      # 输出格式与要求
+      -评价标准:至少3条评价标准,这个评价是教师用来评价学生表现的,需要包含评价维度,以及该维度中教师期待学生的表现,句式为学生应该能....
 
       --------
       ## Format example

+ 11 - 2
src/components/pages/aiAddCourse/aiDialog.vue

@@ -19,6 +19,7 @@
 </template>
   
 <script>
+
 export default {
     props: {
         dialogVisibleAiD: {
@@ -27,6 +28,9 @@ export default {
         },
         aiText: {
             type: String,
+        },
+        clickType: {
+            type: Number
         }
     },
     data() {
@@ -37,8 +41,13 @@ export default {
     },
     watch:{
         dialogVisibleAiD(newValue, oldValue) {
-            this.text = JSON.parse(JSON.stringify(this.aiText))
-        }
+            if(newValue){
+                this.text = JSON.parse(JSON.stringify(this.aiText))
+                if(this.clickType == 2){
+                    this.confirm();
+                }
+            }
+        },
     },
     methods: {
         handleClose(done) {

Alguns ficheiros não foram mostrados porque muitos ficheiros mudaram neste diff