当前位置:   article > 正文

(vue)AI智能问答_vue+ai智能机器人回复功能实现

vue+ai智能机器人回复功能实现

(vue)AI智能问答

项目:AI智能虚拟人(gitee —— virtual-assistant)


效果:
在这里插入图片描述


第一步 在public的js文件夹和src下的utils文件夹下放入see.js脚本

在这里插入图片描述

第二步 在public下的index.html 和 home.vue页面中 引入see.js文件

在这里插入图片描述
在这里插入图片描述

第三步 home.vue页面

data:{
   chatList: [
    // {
    //   content: "我提出的问我提出的问题我提出的问题",
    // },
    // {
    //   content: "虚拟人的回答",
    // },
  ],
},
methods:{ 
	// Window.SSE()
    // 通过sse监听服务端返回的内容
    async getQuestion() {
      let formData = new FormData();
      formData.append("text", this.searchValue);
      const eventSouce = new SSE("/v1/chat/...", {
        method: "POST",
        payload: formData,
      }); 
      // 新增一条空白回复
      const newChatQues = {
        content: "",
      };
      this.chatList.push(newChatQues); 
      eventSouce.addEventListener("message", (e) => {
        let str = e.data;
        // 发现EOF,就结束链接
        if (str.includes("EOF")) {
          str = str.replace("EOF", "");
          eventSouce.close(); 
          this.session();
        }
        // 向回复内容里写值
        newChatQues.content += str; 
        this.scrollBottom();//滚动到底部
      });
      await eventSouce.stream();
    },
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/神奇cpp/article/detail/874247
推荐阅读
相关标签
  

闽ICP备14008679号