mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-17 05:00:16 +00:00
feat(ai): add xhigh thinking level support for gpt-5.3 models
This commit is contained in:
parent
c4726e7c05
commit
b07b72ba2b
2 changed files with 2 additions and 2 deletions
|
|
@ -50,7 +50,7 @@ export function calculateCost<TApi extends Api>(model: Model<TApi>, usage: Usage
|
|||
* Currently only certain OpenAI Codex models support this.
|
||||
*/
|
||||
export function supportsXhigh<TApi extends Api>(model: Model<TApi>): boolean {
|
||||
return model.id.includes("gpt-5.2");
|
||||
return model.id.includes("gpt-5.2") || model.id.includes("gpt-5.3");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue