fix(macos): default voice wake forwarding to webchat (#25440)

Co-authored-by: Peter Machona <7957943+chilu18@users.noreply.github.com>
This commit is contained in:
Peter Steinberger
2026-02-25 00:12:39 +00:00
parent 30082c9af1
commit 11a0495d5f
3 changed files with 4 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ enum VoiceWakeForwarder {
var thinking: String = "low"
var deliver: Bool = true
var to: String?
var channel: GatewayAgentChannel = .last
var channel: GatewayAgentChannel = .webchat
}
@discardableResult

View File

@@ -17,6 +17,7 @@ import Testing
#expect(opts.thinking == "low")
#expect(opts.deliver == true)
#expect(opts.to == nil)
#expect(opts.channel == .last)
#expect(opts.channel == .webchat)
#expect(opts.channel.shouldDeliver(opts.deliver) == false)
}
}