From 1f7e815df39a426d761f84f328ebd69655f854c2 Mon Sep 17 00:00:00 2001 From: WJG Date: Tue, 11 Jun 2024 21:06:36 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E4=BC=98=E5=8C=96=20unWakeUp=20?= =?UTF-8?q?=E5=B0=8F=E7=88=B1=E6=B5=81=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/todo.md | 2 +- src/services/speaker/base.ts | 5 ++++- tests/migpt.ts | 3 +-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/todo.md b/docs/todo.md index f67be1f..305d849 100644 --- a/docs/todo.md +++ b/docs/todo.md @@ -12,7 +12,7 @@ ## 💪 优化 -- 优化 unWakeUp 小爱的流程,增加指令间的执行间隔,降低 ROM 端无响应问题的出现概率。https://github.com/idootop/mi-gpt/issues/32 +- ✅ 优化 unWakeUp 小爱流程,增加指令间的执行间隔,降低 ROM 端无响应问题的出现概率。https://github.com/idootop/mi-gpt/issues/32 - ✅ 优化 debug 日志输出,添加 wakeUp、unWakeUp、env 等关键流程和核心数据的打印。 ## 📒 文档 diff --git a/src/services/speaker/base.ts b/src/services/speaker/base.ts index a51bb9b..ff8fce7 100644 --- a/src/services/speaker/base.ts +++ b/src/services/speaker/base.ts @@ -161,7 +161,9 @@ export class BaseSpeaker { } // 通过 TTS 不发音文本,使小爱退出唤醒状态 await this.MiNA!.pause(); + await sleep(100); await this.MiIOT!.doAction(...this.ttsCommand, kAreYouOK); + await sleep(100); } audioBeep?: string; @@ -405,7 +407,8 @@ export class BaseSpeaker { async switchDefaultSpeaker(speaker: string) { const speakersAPI = process.env.SPEAKERS_DOUBAO; if (!this._doubaoSpeakers && speakersAPI) { - const res = await (await fetch(speakersAPI)).json(); + const resp = await fetch(speakersAPI).catch(() => null); + const res = await resp?.json().catch(() => null); if (Array.isArray(res)) { this._doubaoSpeakers = res; } diff --git a/tests/migpt.ts b/tests/migpt.ts index 09adaeb..8e781e7 100644 --- a/tests/migpt.ts +++ b/tests/migpt.ts @@ -18,8 +18,7 @@ export async function testMiGPT() { userId: process.env.MI_USER!, password: process.env.MI_PASS!, did: process.env.MI_DID, - debug: true, - streamResponse: false, + streamResponse: true, }, bot: { name: "傻妞",