v0.2.1 model names config-driven

This commit is contained in:
local
2026-05-11 20:27:19 -05:00
parent cccbee27e4
commit c9f051cd07
9 changed files with 75 additions and 28 deletions
+3 -2
View File
@@ -1,8 +1,9 @@
import { VersionGraph } from '@start9labs/start-sdk'
import { v_0_1_0 } from './v0.1.0'
import { v_0_2_0 } from './v0.2.0'
import { v_0_2_1 } from './v0.2.1'
export const versionGraph = VersionGraph.of({
current: v_0_2_0,
other: [v_0_1_0],
current: v_0_2_1,
other: [v_0_2_0, v_0_1_0],
})
+13
View File
@@ -0,0 +1,13 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_2_1 = VersionInfo.of({
version: '0.2.1:0',
releaseNotes: {
en_US:
'Parakeet + Gemma model names are now config-driven (live-reloadable via the Set Parakeet URL / Set Gemma URL actions). Operators can swap which model their Ollama / Parakeet wrapper serves without rebuilding the relay.',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})