13 lines
1.0 KiB
TypeScript
13 lines
1.0 KiB
TypeScript
import { VersionInfo } from '@start9labs/start-sdk'
|
|
|
|
export const v_0_2_19 = VersionInfo.of({
|
|
version: '0.2.19:0',
|
|
releaseNotes: {
|
|
en_US: 'Gemini audio capability bumped 60 min / 30 MB → 240 min / 200 MB. The original conservative cap was sized for free-tier Gemini worries that no longer apply on paid Gemini — File API handles audio up to 9.5 hours per call and 2 GB files. The 60-min ceiling was forcing Recap clients with audio >60 min to skip the relay-URL fast-path (where the relay downloads the audio server-side) and instead chunk + upload from the buyer\'s home connection — burning their upload bandwidth and serializing the calls. With the bump, the fast-path now handles content up to 4 hours, which covers virtually every podcast and long-form YouTube content. preferred_chunk_seconds stays at 45 min so server-side chunking still kicks in for the longest files for stability, but doesn\'t gate client behavior.',
|
|
},
|
|
migrations: {
|
|
up: async ({ effects }) => {},
|
|
down: async ({ effects }) => {},
|
|
},
|
|
})
|