feat(keyboard): harden polish/clipboard guards and ship 1.6.6 (build 59)

Keep marketing version at 1.6.6 and bump build to 59. Strengthen never-answer
polish safeguards, clipboard reply-intent continuity, voice undo UX, device
UITests harness, eval fixtures, and What's New assets.
This commit is contained in:
Rocky
2026-08-09 12:45:33 +08:00
parent bfe2cd2001
commit 5d7fcdf24e
41 changed files with 2876 additions and 464 deletions
+2 -1
View File
@@ -88,7 +88,8 @@ def main() -> None:
prompt = base.build_prompt("builtin.xhs", level, draft)
for _ in range(args.samples):
try:
output = base.call(api_key, prompt)
temperature = 0.65 if level == "heavy" else 0.1
output = base.call(api_key, prompt, draft, temperature=temperature)
except Exception as error: # noqa: BLE001 - eval script
print(f" request failed: {error}")
continue