Add vocabulary correction pipeline and example config
This commit is contained in:
parent
f9224621fa
commit
c3503fbbde
9 changed files with 865 additions and 23 deletions
50
config.example.json
Normal file
50
config.example.json
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"daemon": {
|
||||
"hotkey": "Cmd+m"
|
||||
},
|
||||
"recording": {
|
||||
"input": ""
|
||||
},
|
||||
"stt": {
|
||||
"model": "base",
|
||||
"device": "cpu"
|
||||
},
|
||||
"injection": {
|
||||
"backend": "clipboard"
|
||||
},
|
||||
"ai": {
|
||||
"enabled": true
|
||||
},
|
||||
"logging": {
|
||||
"log_transcript": true
|
||||
},
|
||||
"vocabulary": {
|
||||
"replacements": [
|
||||
{
|
||||
"from": "Martha",
|
||||
"to": "Marta"
|
||||
},
|
||||
{
|
||||
"from": "docker",
|
||||
"to": "Docker"
|
||||
},
|
||||
{
|
||||
"from": "system d",
|
||||
"to": "systemd"
|
||||
}
|
||||
],
|
||||
"terms": [
|
||||
"Marta",
|
||||
"Docker",
|
||||
"systemd",
|
||||
"Kubernetes",
|
||||
"PostgreSQL"
|
||||
],
|
||||
"max_rules": 500,
|
||||
"max_terms": 500
|
||||
},
|
||||
"domain_inference": {
|
||||
"enabled": true,
|
||||
"mode": "auto"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue