We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35f80ea commit 411e8bfCopy full SHA for 411e8bf
1 file changed
apps/voice-agent/src/server.ts
@@ -65,7 +65,10 @@ const handleChat = async (
65
const threadId = conversationId ?? randomUUID()
66
67
if (isStopRequest(text)) {
68
- sendJson(res, 200, { text: "", conversationId: threadId })
+ // "*" is the View Assist sentinel for "no speech returned" — it prevents the
69
+ // AI Response display and sensor update while avoiding the TTS error that
70
+ // empty string triggers in some HA/TTS configurations.
71
+ sendJson(res, 200, { text: "*", conversationId: threadId })
72
return
73
}
74
0 commit comments