mirror of
https://github.com/idootop/mi-gpt.git
synced 2025-04-05 12:40:35 +00:00
chore: 优化 unWakeUp 小爱流程
This commit is contained in:
parent
efb47a6a36
commit
1f7e815df3
|
@ -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 等关键流程和核心数据的打印。
|
||||
|
||||
## 📒 文档
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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: "傻妞",
|
||||
|
|
Loading…
Reference in New Issue
Block a user