14 lines
923 B
TypeScript
14 lines
923 B
TypeScript
import { VersionInfo } from '@start9labs/start-sdk'
|
||
|
||
export const v_0_2_78 = VersionInfo.of({
|
||
version: '0.2.78:0',
|
||
releaseNotes: {
|
||
en_US:
|
||
"Phase 1B of the diarization migration: settings UI plumbing only — no behavior change yet. Two new knobs in Settings → Operator Hardware: (1) 'Diarization enabled' toggle, default OFF. When the diarization pipeline ships in Phase 1C/1D, this is the switch that turns it on per-relay. (2) 'Voice clustering threshold' slider, range 50–95 %, default 70 (representing 0.70 cosine similarity per NeMo's recommended default for TitaNet embeddings). Stored as integer percentage because the slider system is integer-only; relay code divides by 100 at request time. This release wires the config + dashboard UI only; the diarization code path itself lands in v0.2.79.",
|
||
},
|
||
migrations: {
|
||
up: async ({ effects }) => {},
|
||
down: async ({ effects }) => {},
|
||
},
|
||
})
|