Files

14 lines
1.1 KiB
TypeScript

import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_2_97 = VersionInfo.of({
version: '0.2.97:0',
releaseNotes: {
en_US:
"Render the two new polish prompts in the dashboard's LLM-prompts panel. v0.2.96 registered them in admin.js's SETTINGS_STRINGS (so the API was exposing them), but the dashboard's render code had hardcoded promptRow() calls only for transcribe + analyze. Now the panel renders four textareas when the API exposes them: Transcribe prompt, Analyze prompt, Polish prompt — speaker name inference, Polish prompt — section summary rewrite. Each polish row has its own help text listing required template variables ({{transcript}} + {{speakerKeys}} for name inference; {{sections}} + {{transcript}} for summary rewrite) and gets the same Reset to default / Set as new default / Show current default buttons the existing prompts have. Backwards-compatible — if older versions of admin.js ever ship without the polish keys, the conditional render gates the rows on each key's presence in stringsMeta.",
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})