mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-16 05:46:35 +00:00
Dont change pipeline if local storage changes (#18773)
This commit is contained in:
parent
02ebc028c8
commit
9dc844ca28
@ -394,7 +394,7 @@ export class HaVoiceCommandDialog extends LitElement {
|
|||||||
start_stage: "intent",
|
start_stage: "intent",
|
||||||
input: { text },
|
input: { text },
|
||||||
end_stage: "intent",
|
end_stage: "intent",
|
||||||
pipeline: this._pipelineId,
|
pipeline: this._pipeline?.id,
|
||||||
conversation_id: this._conversationId,
|
conversation_id: this._conversationId,
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
@ -554,7 +554,7 @@ export class HaVoiceCommandDialog extends LitElement {
|
|||||||
start_stage: "stt",
|
start_stage: "stt",
|
||||||
end_stage: this._pipeline?.tts_engine ? "tts" : "intent",
|
end_stage: this._pipeline?.tts_engine ? "tts" : "intent",
|
||||||
input: { sample_rate: this._audioRecorder.sampleRate! },
|
input: { sample_rate: this._audioRecorder.sampleRate! },
|
||||||
pipeline: this._pipelineId,
|
pipeline: this._pipeline?.id,
|
||||||
conversation_id: this._conversationId,
|
conversation_id: this._conversationId,
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user