chore: 优化 unWakeUp 小爱流程

This commit is contained in:
WJG 2024-06-11 21:06:36 +08:00
parent efb47a6a36
commit 1f7e815df3
No known key found for this signature in database
GPG Key ID: 258474EF8590014A
3 changed files with 6 additions and 4 deletions

View File

@ -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 等关键流程和核心数据的打印。
## 📒 文档

View File

@ -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;
}

View File

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