mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-06 00:46:53 +00:00
feat: branding
This commit is contained in:
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user