@gotcos/glasses-server 6.21.21 → 6.21.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/package.json +1 -1
- package/server/routes/transcribe-stream.ts +7 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## 6.21.22
|
|
2
|
+
|
|
3
|
+
- The meeting Turbo preview is ON by default. `COS_WHISPER_MEETING_PREVIEW` is
|
|
4
|
+
now opt-OUT (`=0` disables), matching `COS_WHISPER_STRIP_BRAND_URLS` and
|
|
5
|
+
`COS_WHISPER_THANKYOU_FILTER` in the same file. The committed Large-v3
|
|
6
|
+
transcript remains authoritative and still atomically replaces the
|
|
7
|
+
provisional line; this gate only decides whether the low-latency lane is
|
|
8
|
+
offered at all. The companion carries a second gate, flipped to default-on in
|
|
9
|
+
app 6.8.312 — both must be on for a provisional line to appear, and an older
|
|
10
|
+
companion simply never asks.
|
|
11
|
+
|
|
12
|
+
- Includes 6.21.21, which was superseded before publish and never released to
|
|
13
|
+
npm. Do not look for it there. Its content — the whisper preflight probe
|
|
14
|
+
retry — is carried here unchanged.
|
|
15
|
+
|
|
1
16
|
## 6.21.21
|
|
2
17
|
|
|
3
18
|
- One transient process probe no longer disables local Whisper for the whole
|
package/package.json
CHANGED
|
@@ -116,8 +116,14 @@ const THANKYOU_FILTER = process.env.COS_WHISPER_THANKYOU_FILTER !== '0'
|
|
|
116
116
|
const MEETING_PREVIEW_MAX_BYTES = 512 * 1024
|
|
117
117
|
let meetingPreviewBusy = false
|
|
118
118
|
|
|
119
|
+
// DEFAULT ON as of 6.21.22 (Miles, 2026-08-06: "I want it to default to being
|
|
120
|
+
// on... it's stable and makes meetings so much better"). Opt-OUT now, matching
|
|
121
|
+
// STRIP_BRAND_URLS / THANKYOU_FILTER above: set COS_WHISPER_MEETING_PREVIEW=0
|
|
122
|
+
// to disable. The committed Large-v3 transcript remains authoritative and
|
|
123
|
+
// atomically replaces the provisional line — this gate only controls whether
|
|
124
|
+
// the low-latency Turbo lane is offered at all.
|
|
119
125
|
function meetingTurboPreviewEnabled(): boolean {
|
|
120
|
-
return process.env.COS_WHISPER_MEETING_PREVIEW
|
|
126
|
+
return process.env.COS_WHISPER_MEETING_PREVIEW !== '0'
|
|
121
127
|
}
|
|
122
128
|
|
|
123
129
|
// Audio persistence: save G2-mic chunks for speakers who need more training data
|