Dont change pipeline if local storage changes (#18773)
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…
Reference in New Issue