4#ifdef USE_VOICE_ASSISTANT
13namespace voice_assistant {
15static const char *
const TAG =
"voice_assistant";
21static const size_t SAMPLE_RATE_HZ = 16000;
23static const size_t RING_BUFFER_SAMPLES = 512 * SAMPLE_RATE_HZ / 1000;
24static const size_t RING_BUFFER_SIZE = RING_BUFFER_SAMPLES *
sizeof(int16_t);
25static const size_t SEND_BUFFER_SAMPLES = 32 * SAMPLE_RATE_HZ / 1000;
26static const size_t SEND_BUFFER_SIZE = SEND_BUFFER_SAMPLES *
sizeof(int16_t);
27static const size_t RECEIVE_SIZE = 1024;
28static const size_t SPEAKER_BUFFER_SIZE = 16 * RECEIVE_SIZE;
34 std::shared_ptr<RingBuffer> temp_ring_buffer = this->
ring_buffer_;
36 temp_ring_buffer->write((
void *) data.data(), data.size());
40#ifdef USE_MEDIA_PLAYER
67 ESP_LOGE(TAG,
"Could not create socket");
72 int err = this->
socket_->setsockopt(SOL_SOCKET, SO_REUSEADDR, &enable,
sizeof(
int));
74 ESP_LOGW(TAG,
"Socket unable to set reuseaddr: errno %d", err);
77 err = this->
socket_->setblocking(
false);
79 ESP_LOGE(TAG,
"Socket unable to set nonblocking mode: errno %d", err);
90 ESP_LOGE(TAG,
"Socket unable to set sockaddr: errno %d", errno);
97 ESP_LOGE(TAG,
"Socket unable to bind: errno %d", errno);
113 ESP_LOGW(TAG,
"Could not allocate speaker buffer");
122 ESP_LOGE(TAG,
"Could not allocate ring buffer");
131 ESP_LOGW(TAG,
"Could not allocate send buffer");
181 ESP_LOGD(TAG,
"reset conversation ID");
208 ESP_LOGD(TAG,
"Starting Microphone");
229 ESP_LOGD(TAG,
"Requesting start");
248#ifdef USE_MEDIA_PLAYER
255 ESP_LOGW(TAG,
"Could not request start");
271 while (available >= SEND_BUFFER_SIZE) {
286 sizeof(this->dest_addr_));
312 bool playing =
false;
319 if (received_len > 0) {
325 ESP_LOGD(TAG,
"Receive buffer full");
335 ESP_LOGD(TAG,
"End of audio stream received");
344#ifdef USE_MEDIA_PLAYER
351 ESP_LOGD(TAG,
"Announcement finished playing");
376 ESP_LOGD(TAG,
"Speaker has finished outputting all audio");
413 ESP_LOGV(TAG,
"Speaker buffer full, trying again next loop");
423 ESP_LOGE(TAG,
"Client attempting to unsubscribe that is not the current API Client");
432 char current_peername[socket::SOCKADDR_STR_LEN];
433 char new_peername[socket::SOCKADDR_STR_LEN];
435 "Multiple API Clients attempting to connect to Voice Assistant\n"
436 " Current client: %s (%s)\n"
437 " New client: %s (%s)",
447static const LogString *voice_assistant_state_to_string(
State state) {
450 return LOG_STR(
"IDLE");
452 return LOG_STR(
"START_MICROPHONE");
454 return LOG_STR(
"STARTING_MICROPHONE");
456 return LOG_STR(
"WAIT_FOR_VAD");
458 return LOG_STR(
"WAITING_FOR_VAD");
460 return LOG_STR(
"START_PIPELINE");
462 return LOG_STR(
"STARTING_PIPELINE");
464 return LOG_STR(
"STREAMING_MICROPHONE");
466 return LOG_STR(
"STOP_MICROPHONE");
468 return LOG_STR(
"STOPPING_MICROPHONE");
470 return LOG_STR(
"AWAITING_RESPONSE");
472 return LOG_STR(
"STREAMING_RESPONSE");
474 return LOG_STR(
"RESPONSE_FINISHED");
476 return LOG_STR(
"UNKNOWN");
483 ESP_LOGD(TAG,
"State changed from %s to %s", LOG_STR_ARG(voice_assistant_state_to_string(old_state)),
484 LOG_STR_ARG(voice_assistant_state_to_string(
state)));
490 ESP_LOGD(TAG,
"Desired state set to %s", LOG_STR_ARG(voice_assistant_state_to_string(desired_state)));
494 ESP_LOGE(TAG,
"Failed to start server. See Home Assistant logs for more details.");
495 this->
error_trigger_.
trigger(
"failed-to-start",
"Failed to start server. See Home Assistant logs for more details.");
505 ESP_LOGD(TAG,
"Client started, streaming microphone");
521 ESP_LOGD(TAG,
"Client started, streaming microphone");
547 ESP_LOGE(TAG,
"No API client connected");
587#ifdef USE_MEDIA_PLAYER
611 ESP_LOGD(TAG,
"Signaling stop");
631 ESP_LOGD(TAG,
"Event Type: %" PRId32, msg.
event_type);
634 ESP_LOGD(TAG,
"Assist Pipeline running");
635#ifdef USE_MEDIA_PLAYER
637 for (
const auto &arg : msg.
data) {
638 if (arg.name ==
"url") {
648 ESP_LOGD(TAG,
"Wake word detected");
653 ESP_LOGD(TAG,
"STT started");
658 for (
const auto &arg : msg.
data) {
659 if (arg.name ==
"text") {
664 ESP_LOGW(TAG,
"No text in STT_END event");
666 }
else if (text.length() > 500) {
670 ESP_LOGD(TAG,
"Speech recognised as: \"%s\"", text.c_str());
675 ESP_LOGD(TAG,
"Intent started");
679 ESP_LOGD(TAG,
"Intent progress");
680 std::string tts_url_for_trigger =
"";
681#ifdef USE_MEDIA_PLAYER
683 for (
const auto &arg : msg.
data) {
684 if ((arg.name ==
"tts_start_streaming") && (arg.value ==
"1") && !this->tts_response_url_.empty()) {
703 for (
const auto &arg : msg.
data) {
704 if (arg.name ==
"conversation_id") {
706 }
else if (arg.name ==
"continue_conversation") {
715 for (
const auto &arg : msg.
data) {
716 if (arg.name ==
"text") {
721 ESP_LOGW(TAG,
"No text in TTS_START event");
724 if (text.length() > 500) {
728 ESP_LOGD(TAG,
"Response: \"%s\"", text.c_str());
729 this->
defer([
this, text]() {
741 for (
const auto &arg : msg.
data) {
742 if (arg.name ==
"url") {
747 ESP_LOGW(TAG,
"No url in TTS_END event");
750 ESP_LOGD(TAG,
"Response URL: \"%s\"", url.c_str());
751 this->
defer([
this, url]() {
752#ifdef USE_MEDIA_PLAYER
765 if (new_state != this->
state_) {
773 ESP_LOGD(TAG,
"Assist Pipeline ended");
786 std::string code =
"";
788 for (
const auto &arg : msg.
data) {
789 if (arg.name ==
"code") {
791 }
else if (arg.name ==
"message") {
795 if (code ==
"wake-word-timeout" || code ==
"wake_word_detection_aborted" || code ==
"no_wake_word") {
798 }
else if (code ==
"wake-provider-missing" || code ==
"wake-engine-missing") {
806 ESP_LOGE(TAG,
"Error: %s - %s", code.c_str(),
message.c_str());
818 ESP_LOGD(TAG,
"TTS stream start");
828 ESP_LOGD(TAG,
"TTS stream end");
834 ESP_LOGD(TAG,
"Starting STT by VAD");
838 ESP_LOGD(TAG,
"STT by VAD end");
843 ESP_LOGD(TAG,
"Unhandled event type: %" PRId32, msg.
event_type);
856 ESP_LOGV(TAG,
"Received audio: %u bytes from API", msg.
data_len);
858 ESP_LOGE(TAG,
"Cannot receive audio, buffer is full");
866 auto it = this->
timers_.begin();
867 for (; it != this->
timers_.end(); ++it) {
871 if (it == this->
timers_.end()) {
884 " Type: %" PRId32
"\n"
915 for (
auto &timer : this->
timers_) {
916 if (timer.is_active && timer.seconds_left > 0) {
917 timer.seconds_left--;
924#ifdef USE_MEDIA_PLAYER
956#ifdef USE_MICRO_WAKE_WORD
964 for (
const auto &ww_id : active_wake_words) {
966 if (model->get_id() == ww_id) {
968 ESP_LOGD(TAG,
"Enabled wake word: %s (id=%s)", model->get_wake_word().c_str(), model->get_id().c_str());
980#ifdef USE_MICRO_WAKE_WORD
985 if (model->is_enabled()) {
990 wake_word.
id = model->get_id();
991 wake_word.
wake_word = model->get_wake_word();
992 for (
const auto &lang : model->get_trained_languages()) {
1001#ifdef USE_MICRO_WAKE_WORD
void mark_failed()
Mark this component as failed.
ESPDEPRECATED("Use const char* overload instead. Removed in 2026.7.0", "2026.1.0") void defer(const std voi defer)(const char *name, std::function< void()> &&f)
Defer a callback to the next loop() call.
ESPDEPRECATED("Use const char* or uint32_t overload instead. Removed in 2026.7.0", "2026.1.0") void set_timeout(const std voi set_timeout)(const char *name, uint32_t timeout, std::function< void()> &&f)
Set a timeout function with a unique name.
void status_clear_error()
ESPDEPRECATED("Use const char* or uint32_t overload instead. Removed in 2026.7.0", "2026.1.0") void set_interval(const std voi set_interval)(const char *name, uint32_t interval, std::function< void()> &&f)
Set an interval function with a unique name.
bool status_has_error() const
ESPDEPRECATED("Use const char* or uint32_t overload instead. Removed in 2026.7.0", "2026.1.0") bool cancel_timeout(const std boo cancel_timeout)(const char *name)
Cancel a timeout function.
ESPDEPRECATED("Use const char* or uint32_t overload instead. Removed in 2026.7.0", "2026.1.0") bool cancel_interval(const std boo cancel_interval)(const char *name)
Cancel an interval function.
An STL allocator that uses SPI or internal RAM.
void deallocate(T *p, size_t n)
static std::unique_ptr< RingBuffer > create(size_t len)
StringRef is a reference to a string owned by something else.
constexpr bool empty() const
void trigger(const Ts &...x) ESPHOME_ALWAYS_INLINE
Inform the parent automation that the event has triggered.
const char * get_peername_to(std::span< char, socket::SOCKADDR_STR_LEN > buf) const
Get peer name (IP address) into caller-provided buffer, returns buf for convenience.
const char * get_name() const
bool send_message(const T &msg)
StringRef preannounce_media_id
uint32_t noise_suppression_level
enums::VoiceAssistantEvent event_type
std::vector< VoiceAssistantEventData > data
StringRef conversation_id
StringRef wake_word_phrase
VoiceAssistantAudioSettings audio_settings
enums::VoiceAssistantTimerEvent event_type
std::vector< WakeWordModel * > get_wake_words()
void add_data_callback(F &&data_callback)
virtual size_t play(const uint8_t *data, size_t length)=0
Plays the provided audio data.
virtual bool has_buffered_data() const =0
Trigger intent_end_trigger_
std::unique_ptr< socket::Socket > socket_
const Configuration & get_configuration()
size_t speaker_buffer_size_
bool started_streaming_tts_
std::string tts_response_url_
bool wait_for_stream_end_
size_t speaker_buffer_index_
Trigger intent_start_trigger_
void on_timer_event(const api::VoiceAssistantTimerEventResponse &msg)
Trigger tts_stream_start_trigger_
Trigger client_connected_trigger_
Trigger< Timer > timer_cancelled_trigger_
std::vector< Timer > timers_
void on_audio(const api::VoiceAssistantAudio &msg)
media_player::MediaPlayer * media_player_
float get_setup_priority() const override
Trigger wake_word_detected_trigger_
void set_state_(State state)
uint8_t * speaker_buffer_
Trigger stt_vad_end_trigger_
void client_subscription(api::APIConnection *client, bool subscribe)
Trigger< Timer > timer_started_trigger_
MediaPlayerResponseState media_player_response_state_
void deallocate_buffers_()
Trigger listening_trigger_
std::shared_ptr< RingBuffer > ring_buffer_
uint8_t noise_suppression_level_
void on_event(const api::VoiceAssistantEventResponse &msg)
Trigger< std::string, std::string > error_trigger_
Trigger< std::string > stt_end_trigger_
uint32_t conversation_timeout_
Trigger< const std::vector< Timer > & > timer_tick_trigger_
Trigger< std::string > intent_progress_trigger_
void on_announce(const api::VoiceAssistantAnnounceRequest &msg)
void request_start(bool continuous, bool silence_detection)
Trigger< std::string > tts_start_trigger_
api::APIConnection * api_client_
Trigger< std::string > tts_end_trigger_
struct sockaddr_storage dest_addr_
speaker::Speaker * speaker_
Trigger< Timer > timer_updated_trigger_
Trigger tts_stream_end_trigger_
Trigger stt_vad_start_trigger_
void start_playback_timeout_()
void reset_conversation_id()
std::string conversation_id_
microphone::MicrophoneSource * mic_source_
micro_wake_word::MicroWakeWord * micro_wake_word_
size_t speaker_bytes_received_
bool continue_conversation_
void on_set_configuration(const std::vector< std::string > &active_wake_words)
Trigger< Timer > timer_finished_trigger_
Trigger client_disconnected_trigger_
@ VOICE_ASSISTANT_REQUEST_USE_WAKE_WORD
@ VOICE_ASSISTANT_REQUEST_USE_VAD
@ VOICE_ASSISTANT_TIMER_UPDATED
@ VOICE_ASSISTANT_TIMER_STARTED
@ VOICE_ASSISTANT_TIMER_FINISHED
@ VOICE_ASSISTANT_TIMER_CANCELLED
@ VOICE_ASSISTANT_INTENT_END
@ VOICE_ASSISTANT_RUN_START
@ VOICE_ASSISTANT_TTS_END
@ VOICE_ASSISTANT_RUN_END
@ VOICE_ASSISTANT_WAKE_WORD_START
@ VOICE_ASSISTANT_TTS_STREAM_END
@ VOICE_ASSISTANT_STT_END
@ VOICE_ASSISTANT_STT_VAD_START
@ VOICE_ASSISTANT_INTENT_PROGRESS
@ VOICE_ASSISTANT_TTS_START
@ VOICE_ASSISTANT_STT_START
@ VOICE_ASSISTANT_INTENT_START
@ VOICE_ASSISTANT_TTS_STREAM_START
@ VOICE_ASSISTANT_STT_VAD_END
@ VOICE_ASSISTANT_WAKE_WORD_END
constexpr float AFTER_CONNECTION
For components that should be initialized after a data connection (API/MQTT) is connected.
std::unique_ptr< Socket > socket(int domain, int type, int protocol)
Create a socket of the given domain, type and protocol.
socklen_t set_sockaddr_any(struct sockaddr *addr, socklen_t addrlen, uint16_t port)
Set a sockaddr to the any address and specified port for the IP version used by socket_ip().
VoiceAssistant * global_voice_assistant
Providing packet encoding functions for exchanging data with a remote host.
std::vector< WakeWord > available_wake_words
std::vector< std::string > active_wake_words
uint32_t max_active_wake_words
static constexpr size_t TO_STR_BUFFER_SIZE
Buffer size for to_str() - sufficient for typical timer names.
std::vector< std::string > trained_languages