mirror of
https://github.com/idootop/mi-gpt.git
synced 2025-04-06 11:06:14 +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 等关键流程和核心数据的打印。
|
- ✅ 优化 debug 日志输出,添加 wakeUp、unWakeUp、env 等关键流程和核心数据的打印。
|
||||||
|
|
||||||
## 📒 文档
|
## 📒 文档
|
||||||
|
|
|
@ -161,7 +161,9 @@ export class BaseSpeaker {
|
||||||
}
|
}
|
||||||
// 通过 TTS 不发音文本,使小爱退出唤醒状态
|
// 通过 TTS 不发音文本,使小爱退出唤醒状态
|
||||||
await this.MiNA!.pause();
|
await this.MiNA!.pause();
|
||||||
|
await sleep(100);
|
||||||
await this.MiIOT!.doAction(...this.ttsCommand, kAreYouOK);
|
await this.MiIOT!.doAction(...this.ttsCommand, kAreYouOK);
|
||||||
|
await sleep(100);
|
||||||
}
|
}
|
||||||
|
|
||||||
audioBeep?: string;
|
audioBeep?: string;
|
||||||
|
@ -405,7 +407,8 @@ export class BaseSpeaker {
|
||||||
async switchDefaultSpeaker(speaker: string) {
|
async switchDefaultSpeaker(speaker: string) {
|
||||||
const speakersAPI = process.env.SPEAKERS_DOUBAO;
|
const speakersAPI = process.env.SPEAKERS_DOUBAO;
|
||||||
if (!this._doubaoSpeakers && speakersAPI) {
|
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)) {
|
if (Array.isArray(res)) {
|
||||||
this._doubaoSpeakers = res;
|
this._doubaoSpeakers = res;
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,8 +18,7 @@ export async function testMiGPT() {
|
||||||
userId: process.env.MI_USER!,
|
userId: process.env.MI_USER!,
|
||||||
password: process.env.MI_PASS!,
|
password: process.env.MI_PASS!,
|
||||||
did: process.env.MI_DID,
|
did: process.env.MI_DID,
|
||||||
debug: true,
|
streamResponse: true,
|
||||||
streamResponse: false,
|
|
||||||
},
|
},
|
||||||
bot: {
|
bot: {
|
||||||
name: "傻妞",
|
name: "傻妞",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user