165 lines
5.4 KiB
Vue
165 lines
5.4 KiB
Vue
<template>
|
||
<view>
|
||
带上下文问题(可修改):<input v-model="TEXT" style="border: 1px solid gainsboro;" />
|
||
<button style="background-color: blue;color: white;" @click="sendToSpark()">发送给大模型</button>
|
||
<text style="width: 90%;flex-wrap:wrap">{{sparkResult}}</text>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import * as base64 from "base-64"
|
||
import CryptoJS from '../../static/crypto-js/crypto-js.js'
|
||
import parser from '../../static/fast-xml-parser/src/parser'
|
||
import * as utf8 from "utf8"
|
||
export default {
|
||
// https://spark-api.xf-yun.com/v1.1/chat V1.5 domain general
|
||
// https://spark-api.xf-yun.com/v2.1/chat V2.0 domain generalv2
|
||
data() {
|
||
return {
|
||
TEXT: '你好,我的名字叫大王',
|
||
APPID: '2eda6c2e', // 控制台获取填写
|
||
APISecret: 'MDEyMzE5YTc5YmQ5NjMwOTU1MWY4N2Y2',
|
||
APIKey: '12ec1f9d113932575fc4b114a2f60ffd',
|
||
sparkResult: '',
|
||
historyTextList: [], // 历史会话信息,由于最大token12000,可以结合实际使用,进行移出
|
||
tempRes: '' // 临时答复保存
|
||
}
|
||
},
|
||
methods: {
|
||
async sendToSpark() {
|
||
let myUrl = await this.getWebSocketUrl();
|
||
this.tempRes = "";
|
||
// this.sparkResult = "";
|
||
let realThis = this;
|
||
this.socketTask = uni.connectSocket({
|
||
//url: encodeURI(encodeURI(myUrl).replace(/\+/g, '%2B')),
|
||
url: myUrl,
|
||
method: 'GET',
|
||
success: res => {
|
||
console.log(res, "ws成功连接...", myUrl)
|
||
realThis.wsLiveFlag = true;
|
||
}
|
||
})
|
||
realThis.socketTask.onError((res) => {
|
||
console.log("连接发生错误,请检查appid是否填写", res)
|
||
})
|
||
realThis.socketTask.onOpen((res) => {
|
||
this.historyTextList.push({
|
||
"role": "user",
|
||
"content": this.TEXT
|
||
})
|
||
console.info("wss的onOpen成功执行...", res)
|
||
// 第一帧..........................................
|
||
console.log('open成功...')
|
||
let params = {
|
||
"header": {
|
||
"app_id": this.APPID,
|
||
"uid": "aef9f963-7"
|
||
},
|
||
"parameter": {
|
||
"chat": {
|
||
"domain": "generalv2",
|
||
"temperature": 0.5,
|
||
"max_tokens": 1024
|
||
}
|
||
},
|
||
"payload": {
|
||
"message": {
|
||
"text": this.historyTextList
|
||
}
|
||
}
|
||
};
|
||
console.log("请求的params:" + JSON.stringify(params))
|
||
this.sparkResult = this.sparkResult + "\r\n我:" + this.TEXT + "\r\n"
|
||
this.sparkResult = this.sparkResult + "大模型:"
|
||
console.log("发送第一帧...", params)
|
||
realThis.socketTask.send({ // 发送消息,,都用uni的官方版本
|
||
data: JSON.stringify(params),
|
||
success() {
|
||
console.log('第一帧发送成功')
|
||
}
|
||
});
|
||
});
|
||
|
||
// 接受到消息时
|
||
realThis.socketTask.onMessage((res) => {
|
||
console.log('收到API返回的内容:', res.data);
|
||
let obj = JSON.parse(res.data)
|
||
// console.log("我打印的"+obj.payload);
|
||
let dataArray = obj.payload.choices.text;
|
||
for (let i = 0; i < dataArray.length; i++) {
|
||
realThis.sparkResult = realThis.sparkResult + dataArray[i].content
|
||
realThis.tempRes = realThis.tempRes + dataArray[i].content
|
||
}
|
||
// realThis.sparkResult =realThis.sparkResult+
|
||
let temp = JSON.parse(res.data)
|
||
// console.log("0726",temp.header.code)
|
||
if (temp.header.code !== 0) {
|
||
console.log(`${temp.header.code}:${temp.message}`);
|
||
realThis.socketTask.close({
|
||
success(res) {
|
||
console.log('关闭成功', res)
|
||
realThis.wsLiveFlag = false;
|
||
},
|
||
fail(err) {
|
||
console.log('关闭失败', err)
|
||
}
|
||
})
|
||
}
|
||
if (temp.header.code === 0) {
|
||
if (res.data && temp.header.status === 2) {
|
||
realThis.sparkResult = realThis.sparkResult +
|
||
"\r\n**********************************************"
|
||
this.historyTextList.push({
|
||
"role": "assistant",
|
||
"content": this.tempRes
|
||
})
|
||
/* let dataArray= obj.payload.choices.text;
|
||
for(let i=0;i<dataArray.length;i++){
|
||
realThis.sparkResult =realThis.sparkResult+ dataArray[i].content
|
||
} */
|
||
setTimeout(() => {
|
||
realThis.socketTask.close({
|
||
success(res) {
|
||
console.log('关闭成功', res)
|
||
},
|
||
fail(err) {
|
||
// console.log('关闭失败', err)
|
||
}
|
||
})
|
||
}, 1000)
|
||
}
|
||
}
|
||
})
|
||
},
|
||
// 鉴权
|
||
getWebSocketUrl() {
|
||
return new Promise((resolve, reject) => {
|
||
// https://spark-api.xf-yun.com/v1.1/chat V1.5 domain general
|
||
// https://spark-api.xf-yun.com/v2.1/chat V2.0 domain generalv2
|
||
var url = "wss://spark-api.xf-yun.com/v2.1/chat";
|
||
var host = "spark-api.xf-yun.com";
|
||
var apiKeyName = "api_key";
|
||
console.log(new Date().toGMTString());
|
||
var date = new Date().toGMTString();
|
||
var algorithm = "hmac-sha256";
|
||
var headers = "host date request-line";
|
||
var signatureOrigin = `host: ${host}\ndate: ${date}\nGET /v2.1/chat HTTP/1.1`;
|
||
var signatureSha = CryptoJS.HmacSHA256(signatureOrigin, this.APISecret);
|
||
var signature = CryptoJS.enc.Base64.stringify(signatureSha);
|
||
var authorizationOrigin =
|
||
`${apiKeyName}="${this.APIKey}", algorithm="${algorithm}", headers="${headers}", signature="${signature}"`;
|
||
var authorization = base64.encode(authorizationOrigin);
|
||
url = `${url}?authorization=${authorization}&date=${encodeURI(date)}&host=${host}`;
|
||
|
||
// console.log(url)
|
||
resolve(url);
|
||
});
|
||
},
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
|
||
</style> |