aman/config.example.json

66 lines
1.2 KiB
JSON

{
"config_version": 1,
"daemon": {
"hotkey": "Cmd+m"
},
"recording": {
"input": ""
},
"stt": {
"provider": "local_whisper",
"model": "base",
"device": "cpu",
"language": "auto"
},
"llm": {
"provider": "local_llama"
},
"models": {
"allow_custom_models": false,
"whisper_model_path": "",
"llm_model_path": ""
},
"external_api": {
"enabled": false,
"provider": "openai",
"base_url": "https://api.openai.com/v1",
"model": "gpt-4o-mini",
"timeout_ms": 15000,
"max_retries": 2,
"api_key_env_var": "AMAN_EXTERNAL_API_KEY"
},
"injection": {
"backend": "clipboard",
"remove_transcription_from_clipboard": false
},
"ux": {
"profile": "default",
"show_notifications": true
},
"advanced": {
"strict_startup": true
},
"vocabulary": {
"replacements": [
{
"from": "Martha",
"to": "Marta"
},
{
"from": "docker",
"to": "Docker"
},
{
"from": "system d",
"to": "systemd"
}
],
"terms": [
"Marta",
"Docker",
"systemd",
"Kubernetes",
"PostgreSQL"
]
}
}