Add Vosk keystroke eval tooling and findings

This commit is contained in:
Thales Maciel 2026-02-28 17:20:09 -03:00
parent 8c1f7c1e13
commit 510d280b74
15 changed files with 2219 additions and 0 deletions

View file

@ -0,0 +1,65 @@
[
{
"intent_id": "ctrl+d",
"literal_phrase": "control d",
"nato_phrase": "control delta",
"letter": "d",
"modifier": "ctrl"
},
{
"intent_id": "ctrl+b",
"literal_phrase": "control b",
"nato_phrase": "control bravo",
"letter": "b",
"modifier": "ctrl"
},
{
"intent_id": "ctrl+p",
"literal_phrase": "control p",
"nato_phrase": "control papa",
"letter": "p",
"modifier": "ctrl"
},
{
"intent_id": "shift+d",
"literal_phrase": "shift d",
"nato_phrase": "shift delta",
"letter": "d",
"modifier": "shift"
},
{
"intent_id": "shift+b",
"literal_phrase": "shift b",
"nato_phrase": "shift bravo",
"letter": "b",
"modifier": "shift"
},
{
"intent_id": "shift+p",
"literal_phrase": "shift p",
"nato_phrase": "shift papa",
"letter": "p",
"modifier": "shift"
},
{
"intent_id": "ctrl+shift+d",
"literal_phrase": "control shift d",
"nato_phrase": "control shift delta",
"letter": "d",
"modifier": "ctrl+shift"
},
{
"intent_id": "ctrl+shift+b",
"literal_phrase": "control shift b",
"nato_phrase": "control shift bravo",
"letter": "b",
"modifier": "ctrl+shift"
},
{
"intent_id": "ctrl+shift+p",
"literal_phrase": "control shift p",
"nato_phrase": "control shift papa",
"letter": "p",
"modifier": "ctrl+shift"
}
]