- v0.1.1: config persistence — FileHelper paths made absolute (/media/startos/volumes/main/...); relative paths resolved into the JS runtime's ephemeral cwd so action saves never reached /data - v0.1.2: preJobStopContainers (Configure Grading) — docker-stop resident vLLM containers on the head Spark at job start, no auto-restart - v0.1.3: preflight auth (LiteLLM master_key gates /models), poll-until-loaded, crash fast-fail (restarting counts as dead) - v0.1.4: HF_HUB_OFFLINE/TRANSFORMERS_OFFLINE in airgapped serving (--internal network has no DNS); grader _post timeout 600→1800s for ~3.6 tok/s GB10 generation - v0.1.5: dashboard viewer survives the periodic background refresh; download buttons for deck reports, deck JSON, and SCORECARD.md - .gitignore: .startos/ build workspace, start-technologies/ Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
14 lines
603 B
TypeScript
14 lines
603 B
TypeScript
import { VersionInfo } from '@start9labs/start-sdk'
|
|
|
|
/** Serving-readiness fix. ExVer form `<upstream>:<downstream>`. */
|
|
export const v_0_1_3 = VersionInfo.of({
|
|
version: '0.1.3:0',
|
|
releaseNotes:
|
|
'Fix wave preflight: the model-proxy probe now authenticates (the router ' +
|
|
'requires its master key even on /models) and both the proxy check and the ' +
|
|
'per-model completion check poll until ready instead of failing on a ' +
|
|
'single early attempt — a 31B model takes minutes to load into GPU ' +
|
|
'memory. Crashed containers fail fast with their log tail.',
|
|
migrations: {},
|
|
})
|