飞天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.

23 lines
535 B

var ajaxUrl = 'http://192.168.99.86:3001'
function FetchChatTalk () {
$.ajax({
url: ajaxUrl + '/api/v1/workspace/dxhtsg/chat',
type: 'POST',
headers: {
"Authorization": "Bearer XVSPT0T-6P54SZH-QP36QKJ-KK77TN6"
},
contentType:'application/json',
dataType: "json",
data: JSON.stringify({
"message": '你是谁',
"mode":"chat"
}),
success: function (res) {
console.log('res',res)
},
error: function (err) {
console.log(err);
}
});
}