feat(keyboard): ship AI hint carousel, home library cards, and clipboard polish
Rotate AI idle suggestions with optional remote packs, move history/dictionary onto self-sizing Home preview cards, harden clipboard capture/prompting, and simplify keyboard chrome by dropping most liquid-glass shadows.
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
func leakCredential(apiKey: String) {
|
||||
print("credential=\(apiKey)")
|
||||
}
|
||||
|
||||
func leakResponse(bodyText: String) {
|
||||
OSGLog.flow.error("response=\(bodyText, privacy: .public)")
|
||||
}
|
||||
|
||||
func leakPrompt(text: String) {
|
||||
debug("prompt=\(text)")
|
||||
}
|
||||
|
||||
func leakResult(result: FlowResult) {
|
||||
FlowTrace.warn("failed", "message=\(result.text ?? "nil")")
|
||||
}
|
||||
|
||||
func leakError(error: FlowTranscriptionError) {
|
||||
debug("failure=\(error.message)")
|
||||
}
|
||||
|
||||
enum FlowTrace {
|
||||
static func transcript(_ step: String, _ text: String) {
|
||||
print("stage=\(step) text=\(text)")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user