aiCreate.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. <template>
  2. <div>
  3. <el-dialog title="智能创建" :visible.sync="aiDialogVisible" :append-to-body="true" width="600px"
  4. :before-close="handleClose" class="pub_dialog_diy" v-loading="loading">
  5. <div>
  6. <div class="ex_box">
  7. <span>例子:</span>
  8. <el-button type="primary" size="mini" @click="checkExample('1')">选择题</el-button>
  9. <el-button type="primary" size="mini" @click="checkExample('2')">问答题</el-button>
  10. </div>
  11. <div class="ac_box">
  12. <el-input v-model="text" placeholder="请在这里输入要发送的消息" size="normal" type="textarea" resize="none"
  13. :rows="3"></el-input>
  14. <el-button type="primary" size="mini" @click="generate" style="margin-left:10px">生成</el-button>
  15. </div>
  16. <div class="ac_content" v-if="aiCreate.length">
  17. <div class="title">生成内容:</div>
  18. <div class="box" v-if="aiType == 1">
  19. <div v-for="(item, index) in aiCreate" :key="index" class="choice">
  20. <div class="title">{{ `${index + 1}:${item.title}` }}</div>
  21. <div class="options">
  22. <span v-for="(option, oIndex) in item.options" :key="`${index}-${oIndex}`">{{ option }}</span>
  23. </div>
  24. <div class="answer">{{ `答案:${item.answer}` }}</div>
  25. </div>
  26. </div>
  27. <div class="box" v-if="aiType == 3">
  28. <div v-for="(item, index) in aiCreate" :key="index" class="choice">
  29. <div class="title">{{ `${index + 1}:${item.title}` }}</div>
  30. <div class="answer">{{ `答案:${item.answer}` }}</div>
  31. </div>
  32. </div>
  33. </div>
  34. </div>
  35. <div slot="footer">
  36. <el-button @click="close">Cancel</el-button>
  37. <el-button type="primary" @click="exportT">导入</el-button>
  38. </div>
  39. </el-dialog>
  40. </div>
  41. </template>
  42. <script>
  43. export default {
  44. props: {
  45. aiJson: {
  46. type: Array,
  47. },
  48. aiDialogVisible: {
  49. type: Boolean,
  50. }
  51. },
  52. data() {
  53. return {
  54. example: {
  55. '1':{
  56. 'title':'请你以富文本的形式给我出三个关于小学数学单位换算的选择题,每个选择题选项不少于4个,需要答案,但不需要解释,符号请使用中文的'
  57. },
  58. '2':{
  59. 'title':'请你以富文本的形式给我出三个关于三年级语文知识问答的问答题,需要答案,但不需要解释'
  60. }
  61. },
  62. text: "",
  63. aiCreate: [],
  64. aiType: "",
  65. loading: false
  66. }
  67. },
  68. methods: {
  69. handleClose(done) {
  70. this.close()
  71. done()
  72. },
  73. close() {
  74. this.$emit('update:aiDialogVisible', false)
  75. },
  76. checkExample(type){
  77. this.text = this.example[type].title
  78. },
  79. guid() {
  80. var _num,
  81. i,
  82. _guid = "";
  83. for (i = 0; i < 32; i++) {
  84. _guid += Math.floor(Math.random() * 16).toString(16); //随机0 - 16 的数字 转变为16进制的字符串
  85. _num = Math.floor((i - 7) / 4); //计算 (i-7)除4
  86. if (_num > -1 && _num < 4 && i == 7 + 4 * _num) {
  87. //会使guid中间加 "-" 形式为xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  88. _guid += "-";
  89. }
  90. }
  91. return _guid;
  92. },
  93. generate() {
  94. if (this.text == "") {
  95. this.$message.error("请输入要发送的消息")
  96. return
  97. }
  98. // else if (this.text.indexOf("添加文档") !== -1) {
  99. // this.aiType = 4
  100. // }
  101. if (this.text.indexOf("选择题") !== -1) {
  102. this.aiType = 1
  103. } else if (this.text.indexOf("问答题") !== -1) {
  104. this.aiType = 3
  105. }else {
  106. this.$message.error("生成的文字中要包含选择题或者问答题才能生成题目哦,请重新编辑下吧")
  107. return
  108. }
  109. this.loading = true
  110. let param = {
  111. model: "gpt-3.5-turbo",
  112. temperature: 0,
  113. max_tokens: 2048,
  114. top_p: 1,
  115. frequency_penalty: 0,
  116. presence_penalty: 0,
  117. messages: [
  118. {
  119. role: "user",
  120. content: this.text,
  121. },
  122. ],
  123. uid: this.guid(),
  124. stream: false,
  125. };
  126. this.ajax.post("https://gpt.cocorobo.cn/chat", param).then(
  127. (res) => {
  128. if (
  129. res.data.FunctionResponse &&
  130. res.data.FunctionResponse.result &&
  131. res.data.FunctionResponse.result == "无效请求,请重新发起对话"
  132. ) {
  133. this.$message.error("你的内容太长,无法使用Ai创建!");
  134. this.loading = false
  135. return;
  136. }
  137. let aiReturn = res.data.FunctionResponse.choices[0].message.content;
  138. aiReturn = aiReturn.split("\n")
  139. aiReturn = aiReturn.filter(e => e != "")
  140. this.loading = false
  141. this.generate2(aiReturn)
  142. },
  143. (err) => {
  144. console.log(err);
  145. this.loading = false
  146. }
  147. );
  148. },
  149. generate2(aiReturn) {
  150. this.loading = true
  151. let content = ''
  152. if(this.aiType == 1){
  153. content = `${JSON.stringify(aiReturn)},要求返回格式是Array [{"title":"",options:[],answer:[]}]`
  154. }else if(this.aiType == 3) {
  155. content = `${JSON.stringify(aiReturn)},要求返回格式是Array [{title: "",answer: ""}]`
  156. }
  157. let param = {
  158. model: "gpt-3.5-turbo",
  159. temperature: 0,
  160. max_tokens: 2048,
  161. top_p: 1,
  162. frequency_penalty: 0,
  163. presence_penalty: 0,
  164. messages: [
  165. {
  166. role: "user",
  167. content: content
  168. },
  169. ],
  170. uid: this.guid(),
  171. stream: false,
  172. };
  173. this.ajax.post("https://gpt.cocorobo.cn/chat", param).then(
  174. (res) => {
  175. if (
  176. res.data.FunctionResponse &&
  177. res.data.FunctionResponse.result &&
  178. res.data.FunctionResponse.result == "无效请求,请重新发起对话"
  179. ) {
  180. this.$message.error("你的内容太长,无法使用Ai创建!");
  181. this.loading = false
  182. return;
  183. }
  184. let aiCreate = res.data.FunctionResponse.choices[0].message.content;
  185. try {
  186. aiCreate = JSON.parse(aiCreate)
  187. } catch (error) {
  188. this.generate2(aiReturn)
  189. }
  190. console.log(aiCreate)
  191. this.aiCreate = aiCreate;
  192. this.loading = false
  193. },
  194. (err) => {
  195. console.log(err);
  196. this.loading = false
  197. }
  198. );
  199. },
  200. exportT() {
  201. if (!this.aiCreate.length) {
  202. this.$message.error("请先创建Ai内容!");
  203. return;
  204. }
  205. if(this.aiType !== 1 && this.aiType !== 3){
  206. this.$message.error("目前只支持选择题/问答题的创建!输入内容必须包含选择题/问答题!");
  207. return;
  208. }
  209. var json = JSON.parse(JSON.stringify(this.aiJson))
  210. let array = []
  211. let englishIndex = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
  212. if(this.aiType === 1){
  213. for (var i = 0; i < this.aiCreate.length; i++) {
  214. let answer = []
  215. let type = 1
  216. if (this.aiCreate[i].answer) {
  217. if (this.aiCreate[i].answer.length > 1) {
  218. type = 2
  219. for (var j = 0; j < this.aiCreate[i].answer.length; j++) {
  220. answer.push(englishIndex.indexOf(this.aiCreate[i].answer[j].toLocaleUpperCase()))
  221. }
  222. } else {
  223. answer = [englishIndex.indexOf(this.aiCreate[i].answer[0].toLocaleUpperCase())]
  224. }
  225. }
  226. let options = []
  227. for (var j = 0; j < this.aiCreate[i].options.length; j++) {
  228. options.push({
  229. img: "",
  230. option: this.aiCreate[i].options[j]
  231. })
  232. }
  233. array.push(
  234. {
  235. json: {
  236. answer: answer,
  237. array: options,
  238. title: this.aiCreate[i].title,
  239. type: type
  240. },
  241. ttype: 1,
  242. type: 1
  243. }
  244. )
  245. }
  246. }else if(this.aiType === 3){
  247. for (var i = 0; i < this.aiCreate.length; i++) {
  248. array.push(
  249. {
  250. json: {
  251. answer: this.aiCreate[i].answer,
  252. title: this.aiCreate[i].title,
  253. type: 1
  254. },
  255. ttype: 1,
  256. type: 3
  257. }
  258. )
  259. }
  260. }
  261. if (!json.length || json[0].ttype == 1) {
  262. json = [...json, ...array]
  263. } else if((json[0].ttype == 2 || json[0].ttype == 3) && !json[0].array.length){
  264. json[0].array = array
  265. } else if(json[0].ttype == 2 && json[0].array.length){
  266. json[0].array = [...json[0].array, ...array]
  267. } else if(json[0].ttype == 3 && json[0].array.length){
  268. if(json[0].array[0].ttype == 2){
  269. json[0].array[0].array = [...json[0].array[0].array, ...array]
  270. }else {
  271. json[0].array = [...json[0].array, ...array]
  272. }
  273. }
  274. this.$emit("update:aiJson", json)
  275. this.close()
  276. }
  277. },
  278. }
  279. </script>
  280. <style scoped>
  281. .ac_box {
  282. display: flex;
  283. width: 100%;
  284. align-items: flex-end;
  285. margin-bottom: 10px;
  286. }
  287. .ex_box {
  288. margin-bottom: 10px;
  289. color: #909090;
  290. }
  291. .ac_content {}
  292. .ac_content>.title {
  293. margin-bottom: 10px;
  294. }
  295. .ac_content>.box {}
  296. .ac_content>.box>.choice+.choice {
  297. margin-top: 10px;
  298. }
  299. .ac_content>.box>.choice>div+div {
  300. margin-top: 10px;
  301. }
  302. .ac_content>.box>.choice>.options {
  303. display: flex;
  304. flex-wrap: wrap;
  305. }
  306. .ac_content>.box>.choice>.options>span {
  307. margin-right: 10px;
  308. margin-bottom: 5px;
  309. }
  310. </style>