Skip to content

Commit 4634a17

Browse files
authored
Add intent progress to voice assistant enum (#1221)
1 parent e332393 commit 4634a17

File tree

3 files changed

+18
-16
lines changed

3 files changed

+18
-16
lines changed

aioesphomeapi/api.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1643,6 +1643,7 @@ enum VoiceAssistantEvent {
16431643
VOICE_ASSISTANT_STT_VAD_END = 12;
16441644
VOICE_ASSISTANT_TTS_STREAM_START = 98;
16451645
VOICE_ASSISTANT_TTS_STREAM_END = 99;
1646+
VOICE_ASSISTANT_INTENT_PROGRESS = 100;
16461647
}
16471648

16481649
message VoiceAssistantEventData {

aioesphomeapi/api_pb2.py

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aioesphomeapi/model.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1411,6 +1411,7 @@ class VoiceAssistantEventType(APIIntEnum):
14111411
VOICE_ASSISTANT_STT_VAD_END = 12
14121412
VOICE_ASSISTANT_TTS_STREAM_START = 98
14131413
VOICE_ASSISTANT_TTS_STREAM_END = 99
1414+
VOICE_ASSISTANT_INTENT_PROGRESS = 100
14141415

14151416

14161417
class VoiceAssistantTimerEventType(APIIntEnum):

0 commit comments

Comments
 (0)