mirror of
https://github.com/HeyPuter/puter.git
synced 2025-12-26 23:40:40 -06:00
Add GPT-5.2 model to OpenAI provider models
This commit is contained in:
@@ -3,6 +3,20 @@
|
||||
import { IChatModel } from '../types';
|
||||
|
||||
export const OPEN_AI_MODELS: IChatModel[] = [
|
||||
{
|
||||
id: 'gpt-5.2-2025-12-11',
|
||||
aliases: ['gpt-5.2'],
|
||||
costs_currency: 'usd-cents',
|
||||
input_cost_key: 'prompt_tokens',
|
||||
output_cost_key: 'completion_tokens',
|
||||
costs: {
|
||||
tokens: 1_000_000,
|
||||
prompt_tokens: 175,
|
||||
cached_tokens: 17.5,
|
||||
completion_tokens: 1400,
|
||||
},
|
||||
max_tokens: 128000,
|
||||
},
|
||||
{
|
||||
id: 'gpt-5.1',
|
||||
costs_currency: 'usd-cents',
|
||||
|
||||
Reference in New Issue
Block a user