fix: extend Ling 3.0 Tiny :free availability window to Aug 17

This commit is contained in:
OpenClaude
2026-08-12 09:06:43 +08:00
parent c40d663b70
commit ee64d80c2e
2 changed files with 4 additions and 4 deletions
@@ -167,7 +167,7 @@ export default defineGateway({
label: 'Ling 3.0 Tiny Free (via Opengateway)',
modelDescriptorId: 'inclusionai/ling-3.0-tiny:free',
notes: 'Free through August 13, 2026 (rate limited)',
availableUntil: '2026-08-13T10:00:00Z',
availableUntil: '2026-08-17T10:00:00Z',
},
// Macaron — served by the gateway via direct Novita (not on
// OpenRouter). Paid since 2026-08-10.
+3 -3
View File
@@ -9,11 +9,11 @@ import { resolveModelRuntimeLimits } from './runtimeMetadata.js'
// All three sides of the Ling Tiny availability window (availableUntil on
// the gitlawb-opengateway catalog entry, mirroring the gateway's
// LING_TINY_FREE_END_ISO = 2026-08-13T10:00:00Z). The cutoff itself is
// LING_TINY_FREE_END_ISO = 2026-08-17T10:00:00Z). The cutoff itself is
// exclusive: at exactly the cutoff instant the entry is already gone.
const DURING_WINDOW = new Date('2026-08-12T00:00:00Z')
const AT_CUTOFF = new Date('2026-08-13T10:00:00Z')
const AFTER_WINDOW = new Date('2026-08-13T10:00:01Z')
const AT_CUTOFF = new Date('2026-08-17T10:00:00Z')
const AFTER_WINDOW = new Date('2026-08-17T10:00:01Z')
describe('Ling 3.0 Tiny :free descriptor', () => {
test('exposes the Tiny capabilities and limits to gateway catalogs', () => {