From 5842707da98253f57e116a9c1a88641a37de14ae Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Fri, 19 Dec 2025 09:17:53 -0600 Subject: [PATCH] Document urgent flag in operations guide MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added example for urgent messages with higher volume playback. Also updated voice example to use lessac-high. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- OPERATIONS.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/OPERATIONS.md b/OPERATIONS.md index f4fd297..0943027 100644 --- a/OPERATIONS.md +++ b/OPERATIONS.md @@ -94,10 +94,23 @@ curl -X POST http://localhost:8888/notify \ -d '{ "message": "Speaking at a different rate", "rate": 200, - "voice": "en_US-lessac-medium" + "voice": "en_US-lessac-high" }' ``` +### Example: Urgent Message (Higher Volume) + +```bash +curl -X POST http://localhost:8888/notify \ + -H 'Content-Type: application/json' \ + -d '{ + "message": "Critical alert! Immediate attention required.", + "urgent": true + }' +``` + +The `urgent` flag plays audio at 1.5x volume for critical messages. + ## Configuration Configuration is via environment variables. Edit the service file or create a `.env` file: