Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
17 lines
674 B
TypeScript
17 lines
674 B
TypeScript
import { VersionInfo } from '@start9labs/start-sdk'
|
|
|
|
/**
|
|
* Initial release. ExVer form `<upstream>:<downstream>` — we track our own
|
|
* packaging revision since Boardroom Map has no separate upstream semver.
|
|
*/
|
|
export const v_0_1_0 = VersionInfo.of({
|
|
version: '0.1.0:0',
|
|
releaseNotes:
|
|
'Initial release: drop confidential documents in and convene a panel of ' +
|
|
'local LLMs on your DGX Sparks to review them. Choose the models, the ' +
|
|
'personas, and how many reviews; an optional local lead reviewer ' +
|
|
'synthesizes a consolidated report. Default air-gapped mode keeps documents ' +
|
|
'and reviews entirely on your hardware.',
|
|
migrations: {},
|
|
})
|