evaList.vue 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121
  1. <template>
  2. <div style="position: relative;" v-loading="loading" :style="{ minHeight: loading ? '250px' : 'auto' }"
  3. element-loading-text="小可正在努力生成中,请稍等...">
  4. <div class="c_pub_button_confirm stopBtn" v-if="loading" @click="cancelAjax('elist')">停止</div>
  5. <div class="elist_title">
  6. <div style=" display: flex; flex-direction: row;align-items: center; margin: 20px 0; ">
  7. <div class="lineTitle clineTitle">评价设置</div>
  8. <div style="margin-left:auto;display: flex;">
  9. <div class="r_pub_button_op" style="margin-left:10px;" @click="openAiDialog('elist')">{{ (eList &&
  10. eList.length) ? '重新生成评价' : '生成评价' }}</div>
  11. <div v-if="eList && eList.length" class="show_taskD" :class="{ show: interPan }" @click="toggleInterPan">
  12. <img src="../../../assets/icon/new/u_up.png" />
  13. {{ interPan ? '收起' : '展开' }}
  14. </div>
  15. </div>
  16. </div>
  17. </div>
  18. <div class="mbCss" v-show="interPan">
  19. <div class="pjCss">
  20. <div v-if="eList && eList.length" class="elist_input">
  21. <div v-for="(eItem, eIndex) in eList" :key="eIndex" class="elist_input_box">
  22. <div class="elist_inptu_text">
  23. <span>素养:</span>
  24. <input type="input" v-model="eItem.target" placeholder="填写目标"
  25. style="width: calc(100% - 280px);" />
  26. <el-switch @change="forceUpdate" class="rateSwitch" style="margin-left: auto;"
  27. v-model="eItem.isai" active-color="#0061FF" active-text="AI评分" inactive-text=""
  28. active-value="1" inactive-value="2">
  29. </el-switch>
  30. </div>
  31. <div class="elist_inptu_text">
  32. <span>评价标准:</span>
  33. <input type="input" v-model="eItem.detail" placeholder="填写评价标准" />
  34. <div class="remove" @click="
  35. deletEList(
  36. eIndex
  37. )
  38. "></div>
  39. </div>
  40. <div class="elist_inptu_text" style="align-items: flex-start;">
  41. <span>评价细则:</span>
  42. <div style="width: calc(100%);">
  43. <div @click="openRule(eIndex)" class="ruleBtn">{{ eItem.isrule ? '收起细则' : '展开细则' }}
  44. </div>
  45. <div style="width: calc(100%);" class='op_task_box' v-if="eItem.isrule" v-loading="ruleLoading.length && ruleLoading[eIndex]" element-loading-text='小可正在努力生成中,请稍等...'>
  46. <div class="c_pub_button_confirm stopBtn" v-if="ruleLoading.length && ruleLoading[eIndex]" @click="cancelAjax('rule', eIndex)">停止</div>
  47. <textarea v-autoHeight="68" rows="2" class="binfo_input binfo_textarea" cols
  48. v-model="eItem.rule" placeholder="请输入评价细则"></textarea>
  49. <div class="op_box">
  50. <div class="op_remark"></div>
  51. <div style="display: flex;">
  52. <div class="r_pub_button_op" @click="openAiDialog('rule', eIndex)">{{ eList[eIndex].rule ? '重新生成' : '生成细则'}}</div>
  53. </div>
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. </div>
  60. <!-- <div class="eva_btn_box">
  61. <div class="eva_btn_left_box">
  62. <button class="c_pub_button_add pub_btn_eval_img" @click="addEList()">
  63. 添加
  64. </button>
  65. </div>
  66. </div> -->
  67. </div>
  68. </div>
  69. </div>
  70. </template>
  71. <script>
  72. import { v4 as uuidv4 } from "uuid";
  73. var OpenCC = require("opencc-js");
  74. let converter2 = OpenCC.Converter({
  75. from: 'cn',
  76. to: 'hk'
  77. })
  78. export default {
  79. props: {
  80. toolsData: {
  81. type: Object,
  82. default: () => ({})
  83. },
  84. languageSetting: {
  85. type: Number,
  86. default: 0
  87. },
  88. userid: {
  89. type: String,
  90. default: ""
  91. },
  92. knowFileids: {
  93. type: Array,
  94. default: () => []
  95. },
  96. unitJson: {
  97. type: Array,
  98. default: () => []
  99. },
  100. itemTaskIndex: {
  101. type: Number,
  102. required: true
  103. },
  104. toolIndex: {
  105. type: Number,
  106. required: true
  107. },
  108. aiJson: {
  109. type: Object,
  110. default: () => { }
  111. }
  112. },
  113. data() {
  114. return {
  115. eList: [],
  116. isEvaFold: true,
  117. loading: false,
  118. cancelToken: null,
  119. ruleLoading: [],
  120. cancelRuleToken: [],
  121. interPan: true
  122. }
  123. },
  124. watch: {
  125. eList: {
  126. handler(newVal) {
  127. if (newVal.length > 0) {
  128. this.$emit('setEvaList', this.itemTaskIndex, this.toolIndex, newVal)
  129. }
  130. },
  131. immediate: true,
  132. deep: true
  133. },
  134. // unitJson: {
  135. // handler(newVal) {
  136. // debugger
  137. // let elist = this.unitJson[0].chapterInfo[0].taskJson[this.itemTaskIndex].toolChoose[this.toolIndex].eList
  138. // this.eList = elist ? JSON.parse(JSON.stringify(elist)) : []
  139. // },
  140. // immediate: true,
  141. // deep: true
  142. // }
  143. },
  144. directives: {
  145. autoHeight: {
  146. update(el, binding) {
  147. const { value } = binding;
  148. if (value && typeof value === "number") {
  149. el.style.height = `${value}px`;
  150. } else {
  151. el.style.height = "auto";
  152. }
  153. },
  154. componentUpdated(el) {
  155. el.style.height = `${el.scrollHeight + 25}px`;
  156. },
  157. },
  158. },
  159. methods: {
  160. toggleInterPan() {
  161. this.interPan = !this.interPan;
  162. this.forceUpdate();
  163. },
  164. cancelAjax(type, index) {
  165. if(type == 'elist'){
  166. this.$message.success("已经成功停止生成评价设置")
  167. if (this.cancelToken) {
  168. this.cancelToken.cancel('Request canceled by the user.');
  169. this.cancelToken = null;
  170. }
  171. if (this.loading) {
  172. this.loading = false
  173. }
  174. this.$forceUpdate()
  175. }else if(type == 'rule'){
  176. this.$message.success("已经成功停止生成评价细则")
  177. if (this.cancelRuleToken && this.cancelRuleToken[index]) {
  178. this.cancelRuleToken[index].cancel('Request canceled by the user.');
  179. this.cancelRuleToken[index] = null;
  180. }
  181. if (this.ruleLoading[index]) {
  182. this.ruleLoading[index] = false
  183. }
  184. this.$forceUpdate()
  185. }
  186. },
  187. forceUpdate() {
  188. this.$forceUpdate();
  189. },
  190. getLang() {
  191. let lang = ''
  192. if (this.languageSetting == 0) {
  193. lang = 'Chinese.'
  194. } else if (this.languageSetting == 1) {
  195. lang = 'Traditional Chinese.'
  196. } else if (this.languageSetting == 2) {
  197. lang = 'English.'
  198. }
  199. return lang
  200. },
  201. openAiDialog(type, index) {
  202. if (type == 'elist') {
  203. this.aiElist();
  204. if(type == 1){
  205. this.$emit('addCourseBehavior','courseBehavior', `右键学历案-任务${this.itemTaskIndex + 1}-工具${this.toolIndex + 1}-评价设置-${(this.eList && this.eList.length) ? '重新生成评价' : '生成评价'}按钮`)
  206. }else{
  207. this.$emit('addCourseBehavior','courseBehavior', `右键学历案-任务${this.itemTaskIndex + 1}-任务${this.toolIndex + 1}-评价设置-${(this.eList && this.eList.length) ? '重新生成评价' : '生成评价'}按钮`)
  208. }
  209. this.$emit('')
  210. } else if (type == 'rule') {
  211. this.aiRule(index);
  212. this.$emit('addCourseBehavior','courseBehavior', `右键学历案-任务${this.itemTaskIndex + 1}-任务${this.toolIndex + 1}-评价设置-评价${index + 1}-重新生成细则按钮`)
  213. }
  214. },
  215. aiElist() {
  216. let _this = this
  217. if(!_this.knowFileids.length){
  218. this.$message.error(`请添加文件后,再生成评价`)
  219. return
  220. }
  221. _this.loading = true
  222. let fileid = _this.knowFileids.length ? [..._this.knowFileids] : []
  223. let taskDetail = _this.unitJson[0].chapterInfo[0].taskJson[_this.itemTaskIndex].taskDetail ? _this.unitJson[0].chapterInfo[0].taskJson[_this.itemTaskIndex].taskDetail.replaceAll('\n', ' ') : ''
  224. let tool = _this.toolsData[_this.unitJson[0].chapterInfo[0].taskJson[_this.itemTaskIndex].toolChoose[_this.toolIndex].tool[0]].name
  225. let toolDetail = _this.unitJson[0].chapterInfo[0].taskJson[_this.itemTaskIndex].toolChoose[_this.toolIndex].toolDetail.replaceAll('\n', ' ')
  226. let messages = `
  227. Language: ${this.getLang()}
  228. #上下文#
  229. 你是一个资深的教师,你有丰富的项目式学习、跨学科学习、STEAM导师经验。
  230. <任务描述><工具名称>和<工具描述>是你的参考资料。任务描述中包含了多个学生活动,可能会用到多个工具。工具描述会告诉你学生要用这个工具完成怎样的作业。以下是可能出现的工具以及对应的功能。
  231. 【文档】用于记笔记、写作文、设计实验或者撰写报告等文本类作业。
  232. 【表格】用于记录数据、整理信息等
  233. 【思维导图】用于科学探究的问题分析、头脑风暴等。把各个部分主次关系能直白的展示出来,能够帮助学习和记忆。
  234. 【电子白板】用于个性化表达、自主设计类创意活动,系统支持概念图库,主要用于绘制概念图、梳理关键词/事件/问题之间的关系;或支持学生自由绘制一些方案设计图。
  235. 【作业提交】支持各类文件格式的上传与显示,如png等图片格式、pptx、docx、txt、md等。
  236. 【选择题】用于教师检查学生对知识的掌握和理解,参考指标为题目的正确率。
  237. 【排序】通过设置卡片内容及正确顺序,用于教师使用排序类题目检查学生对知识的掌握和理解,参考指标为题目的正确率。。
  238. 【选择匹配】通过上传题目图片与设置正确回答,用于教师使用选择匹配(连线)检查学生对知识的掌握和理解,参考指标为题目的正确率。
  239. 你要学习上传的文件。你只需要学习文件中“课程目标”一级标题下的内容,其中包含了该学科的“核心素养”和“目标”。“学科核心素养”指学生应具备的,能够适应终身发展和社会发展需要的必备品格和关键能力。“目标”指课程本身要实现的具体目标和意图。它规定了某一教育阶段的学生通过课程学习以后,在发展品德、智力、体质等方面期望实现的程度,它是确定课程内容、教学目标和教学方法的基础。
  240. 当选择多个学科时,上传的文件中会有《跨学科素养参考资料》,跨学科素养能力指具有跨文化一致性的、能够跨越一系列情境长期存在和发挥作用的、个体用于应对和解决日常工作和生活中遇到的各种复杂挑战和需求的能力;例如“个人社会责任”“任务规划”“自我管理”“承担风险”等。
  241. 你要理解学科核心素养和学科目标之间的关系。你生成的评价标准可以被理解为课程目标。
  242. #目标#
  243. 你需要完成以下五个步骤:
  244. 1.你要结合<任务描述:${taskDetail}><工具名称:${tool}>和<工具描述:${toolDetail}>生成适合当前作业的评价标准。评价标准用于评估学生的能力。
  245. 2.你要严格检索和匹配上传文件的核心素养和课程目标内容。你要先将评价标准对应到课程目标中,然后检索上传的文件中的“核心素养”与评价标准进行匹配。所有的核心素养信息必须以上传文件的内容为依据,不可以使用其他的默认信息或者模版!每个评价标准必须与文件中明确的核心素养对应。避免使用文件中未出现的任何术语,不允许输出范例内容!。
  246. 3.只有当上传的文件包含多个学科的课程标准时,允许你检索《跨学科素养参考资料》。你需要先检索学科的课程标准,如果你判断当前的评价标准无法对应具体学科的核心素养,可以检索《跨学科素养参考资料》,找到最合适的并输出。
  247. 4.你要根据第一步生成的评价标准制定每一条标准的六级评价细则,这个评价细则将用于对学生能力的打分。
  248. 5.只输出json格式的内容,其他的不要输出!不要输出范例内容!
  249. #风格#
  250. 专业的教育教学用语,简练易懂,逻辑性强。
  251. #语气#
  252. 陈述
  253. #受众#
  254. 教师
  255. #输出要求#
  256. 1.评价标准的个数为3个,最多不能超过5个。每一个评价标准不能超过30字。生成的评价标准只能和当前的工具描述相关。选择题、排序、选择匹配工具只生成1个评价标准。输出内容和格式要求参考#评价标准范例#。注意!输出内容不能复制范例内容。注意!不要出现#评价标准错误范例#中的情况。
  257. 2.每1个评价标准只对应1个关联度最高的核心素养。学科核心素养输出参考#核心素养输出范例#。注意!1个评价标准不能对应多个核心素养。不允许出现上传文件中没有的核心素养。严格按照上传文件中检索到的核心素养输出。每个评价标准必须与文件中明确的核心素养对应。避免使用文件中未出现的任何术语。不要出现#核心素养错误范例#中的情况,不允许输出范例内容!。
  258. 3.具体的评价细则分为6级——0星,1星,2星,3星,4星,5星。输出格式参考#评价细则范例#。
  259. 4.参考#json格式范例#,将内容整理成json格式。**之间的内容为json格式中的代码。以*[*开头,以*]*结尾。每一条评价标准、核心素养以及评价细则以*{*开头,以*}*结尾。核心素养前有*"core":*。评价标准前有*"std":*。评价细则前有*"rule":*。具体内容放在""之间。格式如下:
  260. [
  261. {"std":"评价标准","core":"核心素养(识别上传文件对应的学科)","rule":"评价细则"},
  262. {"std":"评价标准","core":"核心素养(识别上传文件对应的学科)","rule":"评价细则"},
  263. {"std":"评价标准","core":"核心素养(识别上传文件对应的学科)","rule":"评价细则"},
  264. ]
  265. 5.只输出json格式的内容,其他的不要输出!不要输出范例内容!
  266. #评价标准范例#
  267. 学生能够准确描述红树林生态功能及动植物之间的关系。
  268. 学生的调查报告完整详细,说明文逻辑清晰。
  269. 艺术作品反映了对红树林生态系统的创新理解。
  270. #评价标准错误范例#
  271. 错误范例1:工具描述是“在完成动植物调查后,同学们需要使用文档工具撰写调查报告,详细描述调查过程和结果”,输出“艺术作品反映了对红树林生态系统的创新理解”。原因是:文档工具不能支持学生完成艺术作品。
  272. 错误范例2:工具描述是“在实地考察或虚拟模拟中,同学们需要使用表格工具记录观察到的红树林生态功能和动植物信息”,输出“学生能够通过数据分析解释生态系统变化”。原因是:表格工具不能支持学生完成报告的撰写,所以不能学生通过表格工具解释变化。
  273. #评价细则范例#
  274. 0 星,作业内容与作业要求无关;
  275. 1 星,没有识别问题和需求;
  276. 2 星,问题或需求没有被清晰理解或准确识别;
  277. 3 星,问题或需求的一部分被识别;
  278. 4 星,问题或需求的大部分被识别;
  279. 5 星,问题或需求都被识别。
  280. #核心素养错误范例#
  281. 错误范例1:评价标准是“学生能够展示诗歌与美术作品的创作主题和过程”。输出“审美创造(艺术)”是错误的,因为艺术学科的核心素养中没有“审美创造”。
  282. 错误范例2:评价标准是“学生能通过文档工具记录并总结对诗词的人文感悟。”。输出“表达与交流(语文)”是错误的,因为艺术学科的核心素养中没有“表达与交流”。
  283. #核心素养输出范例#
  284. 评价标准:学生应该能准确指出光合作用发生的具体部位(叶绿体),并解释叶绿体在光合作用中的重要性。
  285. 这一条标准对应了《义务教育科学课程标准(2022年版)》中“科学观念”这一条核心素养,识别上传文件对应的学科为“科学”。所以输出内容为:科学观念(科学)。
  286. 评价标准:学生能够通过文档工具清晰表达小学生活的回忆与未来期望。
  287. 这一条标准对应了《义务教育艺术课程标准(2022年版)》中“艺术表现”这一条核心素养,识别上传文件对应的学科为“艺术”。所以输出内容为:艺术表现(艺术)。
  288. 评价标准:学生能够在小组讨论中积极表达观点。
  289. 这一条标准对应了《跨学科素养参考资料》中“合作能力”这一条核心素养,识别上传文件对应的学科为“跨学科”。所以输出内容为:合作能力(跨学科)。
  290. #json格式范例#
  291. [
  292. {"std":"学生应该能清晰地解释光合作用的定义,包括植物利用光能将二氧化碳和水转化为葡萄糖和氧气的过程。","core":"科学观念(科学)","rule":"0星,未能解释光合作用的定义,与主题无关。
  293. 1星,尝试解释光合作用但描述与实际过程不符。
  294. 2星,能够识别光合作用的要素之一,如光能、二氧化碳、水、葡萄糖或氧气,但未形成完整的定义。
  295. 3星,能够部分描述光合作用的过程,例如知道植物利用光能进行转化,但未全面涵盖所有成分。
  296. 4星,能够完整描述光合作用的过程,但细节或某些元素略显不足。
  297. 5星,清晰完整地解释了光合作用的定义,包括如何利用光能将二氧化碳和水转化为葡萄糖和氧气的详细过程。
  298. "},
  299. {"std":"学生应该能正确写出光合作用的化学反应式:6CO2 + 6H2O + 光能 → C6H12O6 + 6O2,并理解每个成分的作用。","core":"科学观念(科学)","rule":"0星:未能写出任何相关的内容,完全没有涉及光合作用的化学反应式。
  300. 1星:光合作用的化学反应式错误,完全没有正确的化学分子式。
  301. 2星:能够部分写出光合作用的化学反应式,但分子式及其配比有较多错误,未能体现光能的作用。
  302. 3星:基本写出大部分的光合作用化学反应式,但有小部分错误,对于光能的作用未能准确阐述。
  303. 4星:能较完整写出光合作用的化学反应式,整体正确,但对每个成分的具体作用理解不够深入。
  304. 5星:准确无误地写出光合作用的化学反应式,并能清晰、详细地解释每个成分的作用及其在反应中的重要性。
  305. "},
  306. {"std":"学生能够通过文档工具清晰表达小学生活的回忆与未来期望。","core":"艺术表现(艺术)","rule":"
  307. 0星,未能使用文档工具表达任何想法。
  308. 1星,尝试使用文档工具但表达不清晰。
  309. 2星,能够部分表达小学生活的回忆或未来期望。
  310. 3星,能够表达小学生活的回忆或未来期望,但不够完整。
  311. 4星,能够完整表达小学生活的回忆与未来期望,但细节略显不足。
  312. 5星,清晰完整地表达了小学生活的回忆与未来期望,细节丰富。
  313. "},
  314. ]`
  315. _this.loading = true
  316. _this.cancelToken = _this.ajax.setCancelSource();
  317. let params = {
  318. assistant_id: '6063369f-289a-11ef-8bf4-12e77c4cb76b',
  319. message: [{ "type": "text", "text": this.languageSetting == 1 ? converter2(messages.replaceAll('\n', " ").replaceAll('*', "")) : messages.replaceAll('\n', " ").replaceAll('*', "") }],
  320. session_name: uuidv4(),
  321. userId: _this.userid,
  322. file_ids: fileid.length ? [...fileid] : '',
  323. model: 'gpt-4o-2024-08-06',
  324. temperature: 0.1,
  325. }
  326. _this.ajax.post('https://gpt4.cocorobo.cn/ai_agent_park_chat', params, _this.cancelToken).then(function (response) {
  327. console.log(response);
  328. let data = response.data.FunctionResponse
  329. if (data.message) {
  330. console.log(data.message);
  331. let elist = []
  332. try {
  333. elist = JSON.parse(data.message.replaceAll("```json", "").replaceAll("```", ""))
  334. elist = elist.map(el => {
  335. return {
  336. isai: "1",
  337. target: el.core,
  338. value: "",
  339. detail: el.std,
  340. rule: el.rule.replace(/([;。])/g, '$1\n')
  341. }
  342. })
  343. } catch (e) {
  344. console.log("error_________________" + e);
  345. try {
  346. let regex = new RegExp("(?<=```json)([\\s\\S]*?)(?=```)");
  347. let match = data.message.match(regex);
  348. elist = JSON.parse(match[0])
  349. elist = elist.map(el => {
  350. return {
  351. isai: "1",
  352. target: el.core,
  353. value: "",
  354. detail: el.std,
  355. rule: el.rule.replace(/([;。])/g, '$1\n')
  356. }
  357. })
  358. } catch (error) {
  359. }
  360. }
  361. console.log(elist);
  362. _this.eList = elist
  363. _this.$forceUpdate()
  364. }
  365. _this.cancelToken = null
  366. _this.loading = false
  367. }).catch(function (error) {
  368. _this.cancelToken = null
  369. _this.loading = false
  370. console.log(error);
  371. });
  372. },
  373. aiRule(index) {
  374. if (!this.eList[index].target || !this.eList[index].detail) {
  375. this.$message.error(`评价信息完善信息后再生成细则`)
  376. return;
  377. }
  378. this.ruleLoading[index] = true
  379. this.$forceUpdate();
  380. let message = `NOTICE
  381. Role: 你是一个专业的项目式学习导师
  382. Language: ${this.getLang()}
  383. ATTENTION: Use '##' to SPLIT SECTIONS, not '#'. Output format carefully referenced "Format example".
  384. Instruction: Based on the context, follow "Format example", write content.
  385. #Context
  386. ##要求
  387. ${this.aiJson['aiRateRule']}
  388. <评价标准:${this.eList[index].detail}>
  389. <素养:${this.eList[index].target}>
  390. 参考#Format example#,将内容整理成字符串格式。。以*====*开头,以*====*结尾。格式如下:
  391. ====
  392. 0 星,作业内容与作业要求无关;
  393. 1 星,没有识别问题和需求;
  394. 2 星,问题或需求没有被清晰理解或准确识别;
  395. 3 星,问题或需求的一部分被识别;
  396. 4 星,问题或需求的大部分被识别;
  397. 5 星,问题或需求都被识别。
  398. ====
  399. # Format example
  400. ====
  401. 0 星,作业内容与作业要求无关;
  402. 1 星,没有识别问题和需求;
  403. 2 星,问题或需求没有被清晰理解或准确识别;
  404. 3 星,问题或需求的一部分被识别;
  405. 4 星,问题或需求的大部分被识别;
  406. 5 星,问题或需求都被识别。
  407. ==== `
  408. this.cancelRuleToken[index] = this.ajax.setCancelSource();
  409. let parm = {
  410. assistant_id: 'b19f1a1a-7586-11ef-8ce0-12e77c4cb76b',
  411. message: [{ "type": "text", "text": this.languageSetting == 1 ? converter2(message.replaceAll('\n', " ").replaceAll('*', "")) : message.replaceAll('\n', " ").replaceAll('*', "") }],
  412. session_name: uuidv4(),
  413. userId: this.userid,
  414. file_ids: [],
  415. model: 'gpt-4o-2024-08-06',
  416. temperature: this.mode == 3 ? 0.5 : 0.1,
  417. }
  418. this.ajax
  419. .post("https://gpt4.cocorobo.cn/ai_agent_park_chat", parm, this.cancelRuleToken[index])
  420. .then(async (response) => {
  421. console.log(response);
  422. let data = response.data.FunctionResponse
  423. if (data.message) {
  424. console.log(data.message);
  425. let content = data.message;
  426. var regex = new RegExp('====([^=]+)====');
  427. let match = content.match(regex);
  428. if (match) {
  429. content = match[1].trim().replaceAll(' ', '');
  430. // 获取匹配到的内容并去除两端空格
  431. console.log('contentInsideDoubleEquals', content);
  432. if (content.indexOf('0星') == -1 || content.indexOf('2星') == -1 || content.indexOf('3星') == -1 || content.indexOf('4星') == -1 || content.indexOf('5星') == -1) {
  433. console.log("未有星级。");
  434. this.cancelRuleToken[index] = null
  435. this.aiRule(index)
  436. return
  437. }
  438. //  return
  439. } else {
  440. console.log("未找到匹配的内容。");
  441. this.cancelRuleToken[index] = null
  442. this.aiRule(index)
  443. return
  444. }
  445. let elist = JSON.parse(JSON.stringify(this.eList[index]))
  446. elist.rule = JSON.parse(JSON.stringify(content.replaceAll("#", "")))
  447. this.$set(this.eList, index, elist)
  448. this.$forceUpdate();
  449. this.ruleLoading[index] = false
  450. this.cancelRuleToken[index] = null
  451. this.$message.success(`评价细则生成成功`)
  452. } else {
  453. this.ruleLoading[index] = false
  454. this.cancelRuleToken[index] = null
  455. }
  456. this.$forceUpdate();
  457. })
  458. .catch((error) => {
  459. this.cancelRuleToken[index] = null
  460. this.ruleLoading[index] = false
  461. this.$forceUpdate();
  462. console.log(error);
  463. });
  464. },
  465. addEList() {
  466. },
  467. deletEList(index) {
  468. this.$confirm('确定删除吗?').then(() => {
  469. this.eList.splice(index, 1)
  470. if (!this.eList.length) {
  471. this.$emit('setEvaList', this.itemTaskIndex, this.toolIndex, this.eList)
  472. }
  473. })
  474. },
  475. openRule(i) {
  476. if (this.eList[i].isrule) {
  477. this.eList[i].isrule = false
  478. } else {
  479. this.eList[i].isrule = true
  480. }
  481. setTimeout(() => {
  482. this.eList[i].rule += "*0*%*";
  483. setTimeout(() => {
  484. this.eList[i].rule = this.eList[i].rule.replaceAll("*0*%*", "");
  485. }, 0);
  486. }, 100);
  487. this.$forceUpdate();
  488. },
  489. },
  490. mounted() {
  491. let elist = this.unitJson[0].chapterInfo[0].taskJson[this.itemTaskIndex].toolChoose[this.toolIndex].eList
  492. this.eList = elist ? JSON.parse(JSON.stringify(elist)) : []
  493. for (let i = 0; i < this.eList.length; i++) {
  494. setTimeout(() => {
  495. this.eList[i].rule += "*0*%*";
  496. setTimeout(() => {
  497. this.eList[i].rule = this.eList[i].rule.replaceAll("*0*%*", "");
  498. }, 0);
  499. }, 500);
  500. }
  501. }
  502. }
  503. </script>
  504. <style scoped>
  505. /* 评价样式 */
  506. .elist_css {
  507. padding-bottom: 75px !important;
  508. }
  509. .elist_title {
  510. margin-bottom: 10px;
  511. }
  512. .elist_input {
  513. width: 100%;
  514. }
  515. .elist_input_box {
  516. display: flex;
  517. align-items: center;
  518. flex-wrap: wrap;
  519. }
  520. .elist_input_box+.elist_input_box {
  521. margin-top: 30px;
  522. }
  523. .elist_input .elist_input_box input {
  524. font: inherit;
  525. color: currentColor;
  526. width: 100%;
  527. /* max-width: calc(100% - 385px); */
  528. max-width: calc(100% - 150px);
  529. padding: 8px 14px;
  530. display: block;
  531. min-width: 0;
  532. outline: none;
  533. border: 1px solid rgba(0, 0, 0, 0.23);
  534. border-radius: 4px;
  535. box-sizing: border-box;
  536. background: #fff;
  537. margin: 0 20px 0 0;
  538. }
  539. .elist_input .elist_input_box span {
  540. height: 36px;
  541. line-height: 36px;
  542. color: rgb(82, 82, 82);
  543. min-width: 80px;
  544. }
  545. .remove {
  546. background-image: url("../../../assets/icon/new/delete_u.png");
  547. cursor: pointer;
  548. opacity: 0.5;
  549. width: 30px;
  550. min-width: 30px;
  551. height: 30px;
  552. background-size: 100% 100%;
  553. background-repeat: no-repeat;
  554. margin-left: 10px;
  555. }
  556. .elist_input .elist_input_box .remove {
  557. height: 20px;
  558. width: 20px;
  559. min-height: 20px;
  560. min-width: 20px;
  561. background-size: 100% 100%;
  562. background-position: unset;
  563. margin-left: 5px;
  564. }
  565. .elist_input_box>>>.el-rate {
  566. display: flex;
  567. height: 36px;
  568. align-items: center;
  569. }
  570. .elist_input_box .elist_inptu_text {
  571. width: 100%;
  572. display: flex;
  573. align-items: center;
  574. margin-top: 10px;
  575. }
  576. .elist_input_box .elist_inptu_text input {
  577. /* width: 500px; */
  578. width: 100%;
  579. max-width: unset;
  580. }
  581. .elist_input_box>>>.el-rate__icon {
  582. font-size: 24px;
  583. }
  584. .elist_btn {
  585. margin-top: 10px;
  586. }
  587. .lineTitle {
  588. /* margin-top: 15px; */
  589. width: 110px;
  590. font-size: 16px;
  591. display: flex;
  592. align-items: center;
  593. line-height: 20px;
  594. }
  595. .lineTitle::before {
  596. content: "";
  597. display: block;
  598. width: 3px;
  599. height: 20px;
  600. background: #0061ff;
  601. border-radius: 3px;
  602. margin: 0 5px 0 0;
  603. }
  604. .clineTitle::before {
  605. content: "";
  606. display: block;
  607. min-width: 10px;
  608. width: 10px;
  609. height: 10px;
  610. background: #0061ff;
  611. border-radius: 50%;
  612. margin: 0 5px 0 0;
  613. }
  614. .courseTop {
  615. display: flex;
  616. flex-direction: row;
  617. justify-content: space-between;
  618. align-items: center;
  619. width: calc(100% - 40px);
  620. margin: 0 auto;
  621. padding: 10px 0;
  622. }
  623. .stepsNav {
  624. display: flex;
  625. flex-direction: row;
  626. justify-content: flex-start;
  627. align-items: center;
  628. }
  629. .stepsWord {
  630. font-size: 18px;
  631. color: #fff;
  632. font-weight: bold;
  633. margin-left: auto;
  634. background: rgb(15, 126, 255);
  635. border-radius: 5px;
  636. padding: 3px 25px;
  637. box-sizing: border-box;
  638. }
  639. .stepBox {
  640. width: calc(100% - 40px);
  641. height: calc(100% - 50px);
  642. overflow: hidden;
  643. border-radius: 5px;
  644. margin: 0 auto;
  645. }
  646. .rightBox {
  647. width: calc(100%);
  648. background: #f0f2f5;
  649. /* border-radius: 10px; */
  650. overflow: auto;
  651. height: calc(100% - 150px);
  652. margin: 0 auto;
  653. position: relative;
  654. box-sizing: border-box;
  655. }
  656. .e_add_top {
  657. display: flex;
  658. justify-content: space-between;
  659. background: #fff;
  660. position: absolute;
  661. right: 20px;
  662. height: 50px;
  663. align-items: center;
  664. }
  665. .e_add_title2 {
  666. display: flex;
  667. align-items: center;
  668. }
  669. .e_add_title2 span {
  670. width: 40px;
  671. }
  672. .e_add_title {
  673. display: flex;
  674. align-items: center;
  675. color: #b8b8b8;
  676. font-size: 18px;
  677. position: relative;
  678. height: 40px;
  679. }
  680. .e_add_title span {
  681. margin-right: 10px;
  682. }
  683. .e_add_title .el_input {
  684. width: 300px;
  685. }
  686. .e_add_title>>>.el-input__inner {
  687. width: 400px;
  688. }
  689. .e_add_btn {}
  690. .e_add_content {
  691. display: flex;
  692. width: 100%;
  693. }
  694. .e_add_list {
  695. background: #fff;
  696. height: 500px;
  697. width: 210px;
  698. position: relative;
  699. margin: 15px 5px 0 0;
  700. flex-shrink: 0;
  701. display: flex;
  702. flex-direction: column;
  703. }
  704. .e_add_list_title {
  705. font-size: 20px;
  706. width: 100%;
  707. box-sizing: border-box;
  708. padding: 15px 40px;
  709. text-align: center;
  710. border-bottom: 1px solid #eaeaea;
  711. position: relative;
  712. display: flex;
  713. align-items: center;
  714. justify-content: center;
  715. height: 57px;
  716. background: #f6f6f6;
  717. }
  718. .e_add_list_title span {
  719. overflow: hidden;
  720. white-space: nowrap;
  721. text-overflow: ellipsis;
  722. }
  723. .e_add_list_title img {
  724. position: absolute;
  725. right: 15px;
  726. width: 25px;
  727. cursor: pointer;
  728. top: 50%;
  729. transform: translateY(-50%);
  730. }
  731. .e_add_list_body {
  732. height: calc(100% - 187px);
  733. overflow: auto;
  734. }
  735. .e_add_list_child {
  736. width: 100%;
  737. display: flex;
  738. align-items: center;
  739. justify-content: center;
  740. position: relative;
  741. box-sizing: border-box;
  742. padding: 15px 40px;
  743. text-align: center;
  744. }
  745. .e_add_list_child span {
  746. overflow: hidden;
  747. white-space: nowrap;
  748. text-overflow: ellipsis;
  749. cursor: pointer;
  750. }
  751. .e_add_list_child img {
  752. position: absolute;
  753. right: 10px;
  754. width: 21px;
  755. cursor: pointer;
  756. top: 50%;
  757. transform: translateY(-50%);
  758. }
  759. .e_add_list_child+.e_add_list_child {
  760. border-top: 1px solid #eaeaea;
  761. }
  762. .e_add_list_child .active {
  763. color: #409eff;
  764. }
  765. .e_add_list_btn {
  766. position: absolute;
  767. bottom: 0;
  768. height: 50px;
  769. background: rgb(120, 120, 254);
  770. width: 100%;
  771. color: #fff;
  772. font-size: 16px;
  773. text-align: center;
  774. line-height: 50px;
  775. cursor: pointer;
  776. }
  777. .e_add_list_detail {
  778. position: absolute;
  779. bottom: 0;
  780. height: 130px;
  781. background: rgb(120, 120, 254);
  782. width: 100%;
  783. color: #fff;
  784. font-size: 16px;
  785. display: flex;
  786. align-items: center;
  787. justify-content: center;
  788. }
  789. .e_add_list_detail textarea {
  790. height: 90%;
  791. width: 95%;
  792. border: none;
  793. resize: none;
  794. outline: none;
  795. padding: 5px;
  796. box-sizing: border-box;
  797. }
  798. .e_add_list_pbox {
  799. width: 100%;
  800. }
  801. .e_add_list_pbox_title {
  802. height: 50px;
  803. background: #fff;
  804. display: flex;
  805. align-items: center;
  806. width: 100%;
  807. box-sizing: border-box;
  808. padding: 0 20px;
  809. flex-direction: row;
  810. flex-wrap: wrap;
  811. }
  812. .mbCss {
  813. width: 100%;
  814. display: flex;
  815. flex-direction: row;
  816. flex-wrap: nowrap;
  817. align-content: center;
  818. align-items: flex-start;
  819. justify-content: flex-start;
  820. }
  821. .pjCss {
  822. /* width: 42%; */
  823. width: calc(100%);
  824. display: flex;
  825. flex-direction: column;
  826. flex-wrap: nowrap;
  827. align-items: flex-start;
  828. }
  829. .e_box {
  830. /* display: flex; */
  831. flex-wrap: wrap;
  832. max-height: 500px;
  833. align-items: flex-start;
  834. overflow: auto;
  835. width: 100%;
  836. }
  837. .e_card {
  838. border: 1px solid #ccc;
  839. background: #fff;
  840. margin-right: 20px;
  841. width: 270px;
  842. display: flex;
  843. flex-direction: column;
  844. align-items: center;
  845. border-radius: 5px;
  846. margin-top: 10px;
  847. text-align: center;
  848. }
  849. .e_card_picture {
  850. margin: 10px 0;
  851. }
  852. .e_card_picture>img {
  853. width: 50px;
  854. }
  855. .e_card_name {
  856. width: 100%;
  857. padding: 0 10px;
  858. box-sizing: border-box;
  859. margin-bottom: 10px;
  860. overflow: hidden;
  861. text-overflow: ellipsis;
  862. white-space: nowrap;
  863. }
  864. .e_card_time {
  865. width: 100%;
  866. padding: 0 10px;
  867. box-sizing: border-box;
  868. font-size: 15px;
  869. color: #c3c3c3;
  870. margin-bottom: 10px;
  871. }
  872. .e_card_btn {
  873. height: 40px;
  874. display: flex;
  875. align-items: center;
  876. width: 100%;
  877. background: rgb(244, 244, 244);
  878. }
  879. .e_card_btn:hover {
  880. background: rgb(221 221 221);
  881. }
  882. .e_card_btn span {
  883. flex: 1 1 auto;
  884. text-align: center;
  885. cursor: pointer;
  886. }
  887. .addEva {
  888. border: 1px solid #ccc;
  889. background: #fff;
  890. margin-right: 20px;
  891. width: 270px;
  892. height: 149px;
  893. display: flex;
  894. flex-direction: column;
  895. align-items: center;
  896. border-radius: 5px;
  897. margin-top: 10px;
  898. text-align: center;
  899. cursor: pointer;
  900. justify-content: center;
  901. }
  902. .addEva>img {
  903. width: 50px;
  904. object-fit: cover;
  905. }
  906. .ruleBtn {
  907. width: fit-content;
  908. height: 36px;
  909. line-height: 36px;
  910. cursor: pointer;
  911. color: #0061FF;
  912. }
  913. .op_task_box,
  914. .op_tool_box,
  915. .outline_detail {
  916. position: relative;
  917. }
  918. .op_task_box:hover .op_box,
  919. .op_tool_box:hover .op_box,
  920. .outline_detail:hover .op_box {
  921. display: flex
  922. }
  923. .op_box {
  924. position: absolute;
  925. bottom: 10px;
  926. display: none;
  927. align-items: center;
  928. justify-content: space-between;
  929. width: calc(100% - 20px);
  930. left: 50%;
  931. transform: translateX(-50%);
  932. }
  933. .op_box .op_remark {
  934. color: #8E8E8E;
  935. font-size: 14px;
  936. }
  937. .binfo_input {
  938. width: 100%;
  939. margin: 0;
  940. padding: 12px 14px;
  941. display: block;
  942. min-width: 0;
  943. outline: none;
  944. box-sizing: border-box;
  945. background: none;
  946. border: none;
  947. border-radius: 4px;
  948. background: #fff;
  949. font-size: 16px;
  950. resize: none;
  951. font-family: "Microsoft YaHei";
  952. min-height: 48px;
  953. /* border: 1px solid #3682fc00; */
  954. border: 1.5px solid #cad1dc;
  955. }
  956. .binfo_textarea {
  957. border: 1.5px solid #cad1dc;
  958. font-size: 16px;
  959. resize: none;
  960. /* background: #f6f6f6; */
  961. font-family: "Microsoft YaHei";
  962. }
  963. .binfo_input:focus-visible {
  964. border: 1.5px solid #3681fc !important;
  965. }
  966. .rateSwitch>>>.el-switch__label.is-active {
  967. color: #0061FF;
  968. }
  969. .rateSwitch>>>.el-switch__label--right {
  970. display: flex;
  971. align-items: center;
  972. }
  973. .rateSwitch>>>.el-switch__label--right::before {
  974. content: "";
  975. width: 14px;
  976. height: 14px;
  977. min-width: 14px;
  978. min-height: 14px;
  979. background-size: 100% 100%;
  980. display: block;
  981. margin-right: 7px;
  982. background-image: url(../../../assets/icon/new/u_op2.png);
  983. }
  984. .rateSwitch>>>.el-switch__label--right.is-active::before {
  985. background-image: url(../../../assets/icon/new/u_op.png);
  986. }
  987. .stopBtn {
  988. z-index: 999999;
  989. position: absolute;
  990. left: 50%;
  991. top: calc(50% + 70px);
  992. transform: translateX(-50%);
  993. }
  994. .show_taskD {
  995. min-width: fit-content;
  996. margin-left: 10px;
  997. display: flex;
  998. align-items: center;
  999. font-size: 14px;
  1000. cursor: pointer;
  1001. color: #0061FF;
  1002. }
  1003. .show_taskD>img {
  1004. width: 15px;
  1005. margin-right: 5px;
  1006. transition: 0.2s all;
  1007. transform: rotate(-90deg);
  1008. }
  1009. .show_taskD.show>img {
  1010. transform: rotate(0deg);
  1011. }
  1012. </style>