You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 959B

1 yıl önce
123456789101112131415161718192021222324252627282930
  1. ## 插件说明
  2. 利用百度UNIT实现智能对话
  3. - 1.解决问题:chatgpt无法处理的指令,交给百度UNIT处理如:天气,日期时间,数学运算等
  4. - 2.如问时间:现在几点钟,今天几号
  5. - 3.如问天气:明天广州天气怎么样,这个周末深圳会不会下雨
  6. - 4.如问数学运算:23+45=多少,100-23=多少,35转化为二进制是多少?
  7. ## 使用说明
  8. ### 获取apikey
  9. 在百度UNIT官网上自己创建应用,申请百度机器人,可以把预先训练好的模型导入到自己的应用中,
  10. see https://ai.baidu.com/unit/home#/home?track=61fe1b0d3407ce3face1d92cb5c291087095fc10c8377aaf https://console.bce.baidu.com/ai平台申请
  11. ### 配置文件
  12. 将文件夹中`config.json.template`复制为`config.json`。
  13. 在其中填写百度UNIT官网上获取应用的API Key和Secret Key
  14. ``` json
  15. {
  16. "service_id": "s...", #"机器人ID"
  17. "api_key": "",
  18. "secret_key": ""
  19. }
  20. ```