收藏
回答

如何正确调用openaiwidget中的情感分析API?

app.json: (openaiwidget 初始化)

  "sitemapLocation": "sitemap.json",

  "plugins": {

    "chatbot": {

      "version": "1.2.10",

      "provider": "wx8c631f7e9f2465e1"

    }

  },

  "requiredBackgroundModes": [

    "audio"

  ]

page1.js(openaiwidget调用处)

wx.cloud.callFunction({

      name:'getusrid', //该云函数返回openid,经过测试,openid可以被返回

      complete:res=>{

        openid = res.result.openid;

        console.log('openid:',openid);

        plugin.init({

          appid: "************",

          openid:openid,

          success:function(){

            console.log("AI initialized successfully!");//每次调用也都是输出的这个

          },

          fail: (error) => {

            console.log("AI initialized failed!");

          },

        });

      }

    });

    const txt = "恭喜小张脱单成功";

    plugin.api.nlp('sentiment', {q: txt, mode: '6class'}).then(res => {

      console.log("sentiment result : ", res);

    });//这里我直接用的微信官方文档上的代码,但是每次都会输出sentiment result :  {success: false, code: 874883, msg: "系统异常,请稍候再试"}

ballball各位大佬了,救救孩子吧

回答关注问题邀请回答
收藏

1 个回答

  • Cjiang
    Cjiang
    2021-01-22

    你好,openaiwidget是什么呢?

    2021-01-22
    有用
    回复 1
    • 一枚人才
      一枚人才
      发表于移动端
      2021-01-26
      微信对话开放平台的一个小插件?https://developers.weixin.qq.com/doc/aispeech/miniprogram/sentiment.html
      2021-01-26
      回复
登录 后发表内容
问题标签