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: "傻妞",