diff options
| author | yum <yum.food.vr@gmail.com> | 2025-07-25 21:28:50 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2025-07-25 21:28:50 -0700 |
| commit | a7f9b7b5fb33bead6bcfb0ad6867b57f2ddc42af (patch) | |
| tree | 61d4870a019acb0e545d88e7661c8a4c7d90e499 /ui/config-schema.js | |
| parent | 5df013d26eb13ed4aef8d16aa14346e0f9be5111 (diff) | |
Experiment with hallucination reduction
- update cursorignore
- add hallucination filter training & inference code
- put logging into a central module
- segment metadata logging occurs before filtering
- segment metadata logging is on by default
- check in embedded python setup script
- include trained hallucination filter model
Diffstat (limited to 'ui/config-schema.js')
| -rw-r--r-- | ui/config-schema.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/config-schema.js b/ui/config-schema.js index fb90f3f..39b74b6 100644 --- a/ui/config-schema.js +++ b/ui/config-schema.js @@ -29,7 +29,7 @@ const CONFIG_SCHEMA = { enable_debug_mode: { type: 'boolean', default: 0 }, enable_previews: { type: 'boolean', default: 1 }, save_audio: { type: 'boolean', default: 0 }, - enable_segment_logging: { type: 'boolean', default: 0 }, + enable_segment_logging: { type: 'boolean', default: 1 }, use_cpu: { type: 'boolean', default: 0 }, enable_lowercase_filter: { type: 'boolean', default: 0 }, enable_uppercase_filter: { type: 'boolean', default: 0 }, @@ -54,4 +54,4 @@ if (typeof module !== 'undefined' && module.exports) { } else { window.CONFIG_SCHEMA = CONFIG_SCHEMA; window.getDefaultConfig = getDefaultConfig; -}
\ No newline at end of file +} |
