feat: branding

This commit is contained in:
Gab
2026-03-27 16:57:05 +11:00
parent fdc30ae262
commit 95340af79a
32 changed files with 31 additions and 38 deletions

View File

@@ -103,6 +103,7 @@ export namespace ModelsDev {
supportsVision: boolean
toolCalling: boolean
maxTokens: number
maxContextLength?: number
deprecated: boolean
deploymentType?: string
pricing?: {
@@ -191,7 +192,7 @@ export namespace ModelsDev {
output: model.pricing?.outputPer1mTokens || 0,
},
limit: {
context: model.maxTokens ? model.maxTokens * 4 : 128000,
context: model.maxContextLength || model.maxTokens || 128000,
output: model.maxTokens || 16000,
},
modalities: {