add llm processing notification

This commit is contained in:
leonardotrapani
2026-01-31 21:03:24 +01:00
parent 692339f430
commit e2b5871d55
8 changed files with 61 additions and 3 deletions
+2
View File
@@ -6,6 +6,7 @@ type MessageType int
const (
MsgRecordingStarted MessageType = iota
MsgTranscribing
MsgLLMProcessing
MsgConfigReloaded
MsgOperationCancelled
MsgRecordingAborted
@@ -25,6 +26,7 @@ type MessageDef struct {
var MessageDefs = []MessageDef{
{MsgRecordingStarted, "recording_started", "Hyprvoice", "Recording Started", false},
{MsgTranscribing, "transcribing", "Hyprvoice", "Recording Ended... Transcribing", false},
{MsgLLMProcessing, "llm_processing", "Hyprvoice", "Processing...", false},
{MsgConfigReloaded, "config_reloaded", "Hyprvoice", "Config Reloaded", false},
{MsgOperationCancelled, "operation_cancelled", "Hyprvoice", "Operation Cancelled", false},
{MsgRecordingAborted, "recording_aborted", "", "Recording Aborted", true},