飞天AI数字人展会页面
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.

22 lines
535 B

11 months ago
  1. var ajaxUrl = 'http://192.168.99.86:3001'
  2. function FetchChatTalk () {
  3. $.ajax({
  4. url: ajaxUrl + '/api/v1/workspace/dxhtsg/chat',
  5. type: 'POST',
  6. headers: {
  7. "Authorization": "Bearer XVSPT0T-6P54SZH-QP36QKJ-KK77TN6"
  8. },
  9. contentType:'application/json',
  10. dataType: "json",
  11. data: JSON.stringify({
  12. "message": '你是谁',
  13. "mode":"chat"
  14. }),
  15. success: function (res) {
  16. console.log('res',res)
  17. },
  18. error: function (err) {
  19. console.log(err);
  20. }
  21. });
  22. }