summaryrefslogtreecommitdiffstats
path: root/ui/config-schema.js
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2025-07-23 19:05:15 -0700
committeryum <yum.food.vr@gmail.com>2025-07-23 19:05:15 -0700
commit9bf33a4cad8196bfe7253c841ab5c35ffdbc0173 (patch)
tree227bb536e3d8d5dd5ae63730999966cd154dd871 /ui/config-schema.js
parent790c91d7ad515c3c0a22ca1341316265b8f0d779 (diff)
add segment metadata logging feature
Segment metadata can now be logged to a json as the app runs. The goal is to identify the params that heavily correlate with hallucinations. Also: * use 7zip for compression in build, speeding things up * log dll download progress every few seconds * shrink package
Diffstat (limited to 'ui/config-schema.js')
-rw-r--r--ui/config-schema.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/config-schema.js b/ui/config-schema.js
index bf91fce..fb90f3f 100644
--- a/ui/config-schema.js
+++ b/ui/config-schema.js
@@ -29,6 +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 },
use_cpu: { type: 'boolean', default: 0 },
enable_lowercase_filter: { type: 'boolean', default: 0 },
enable_uppercase_filter: { type: 'boolean', default: 0 },