diff options
| author | yum <yum.food.vr@gmail.com> | 2025-07-23 19:05:15 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2025-07-23 19:05:15 -0700 |
| commit | 9bf33a4cad8196bfe7253c841ab5c35ffdbc0173 (patch) | |
| tree | 227bb536e3d8d5dd5ae63730999966cd154dd871 /ui/index.html | |
| parent | 790c91d7ad515c3c0a22ca1341316265b8f0d779 (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/index.html')
| -rw-r--r-- | ui/index.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ui/index.html b/ui/index.html index 19c41ce..29d4a78 100644 --- a/ui/index.html +++ b/ui/index.html @@ -4,7 +4,7 @@ <meta charset="UTF-8"> <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'"> <title>TaSTT</title> - <link rel="stylesheet" href="build/output.css"> + <link rel="stylesheet" href="output.css"> </head> <body class="bg-gray-100"> <div class="container-fluid px-6 py-6 h-screen flex flex-col"> @@ -214,6 +214,10 @@ <input type="checkbox" id="save_audio" class="mr-2"> <span class="checkbox-text">Save Audio Segments</span> </label> + <label for="enable_segment_logging" class="checkbox-label"> + <input type="checkbox" id="enable_segment_logging" class="mr-2"> + <span class="checkbox-text">Log Segment Metadata (Debug)</span> + </label> </div> </section> |
