Dont change pipeline if local storage changes (#18773)
parent
02ebc028c8
commit
9dc844ca28
|
@ -394,7 +394,7 @@ export class HaVoiceCommandDialog extends LitElement {
|
|||
start_stage: "intent",
|
||||
input: { text },
|
||||
end_stage: "intent",
|
||||
pipeline: this._pipelineId,
|
||||
pipeline: this._pipeline?.id,
|
||||
conversation_id: this._conversationId,
|
||||
}
|
||||
);
|
||||
|
@ -554,7 +554,7 @@ export class HaVoiceCommandDialog extends LitElement {
|
|||
start_stage: "stt",
|
||||
end_stage: this._pipeline?.tts_engine ? "tts" : "intent",
|
||||
input: { sample_rate: this._audioRecorder.sampleRate! },
|
||||
pipeline: this._pipelineId,
|
||||
pipeline: this._pipeline?.id,
|
||||
conversation_id: this._conversationId,
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue