byt-lingxiao-ai 0.3.12 → 0.3.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +213 -0
- package/components/mixins/webSocketMixin.js +3 -1
- package/dist/index.common.js +3 -1
- package/dist/index.common.js.map +1 -1
- package/dist/index.umd.js +3 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/index.umd.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.umd.js
CHANGED
|
@@ -31325,7 +31325,9 @@ const TIME_JUMP_POINTS_URL = '/minio/lingxiaoai/timeJumpPoints.json'; // 语音u
|
|
|
31325
31325
|
methods: {
|
|
31326
31326
|
initWebSocket() {
|
|
31327
31327
|
try {
|
|
31328
|
-
this.ws = new WebSocket(
|
|
31328
|
+
// this.ws = new WebSocket('ws://10.2.233.41:9999');
|
|
31329
|
+
// 测试
|
|
31330
|
+
this.ws = new WebSocket('ws://192.168.8.9:9999');
|
|
31329
31331
|
this.ws.binaryType = 'arraybuffer';
|
|
31330
31332
|
this.ws.onopen = async () => {
|
|
31331
31333
|
console.log('WebSocket 连接成功');
|