mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 14:22:02 +00:00
- Replace gpt-5-codex, gpt-5-codex-mini, codex-1, codex-mini-latest, gpt-5 - Add gpt-5.1-codex-max, gpt-5.1-codex-mini, gpt-5.2, gpt-5.1 - Update thinking support for all Codex models
112 lines
3.2 KiB
TypeScript
112 lines
3.2 KiB
TypeScript
/**
|
|
* Codex Model Definitions
|
|
*
|
|
* Official Codex CLI models as documented at https://developers.openai.com/codex/models/
|
|
*/
|
|
|
|
import { CODEX_MODEL_MAP } from '@automaker/types';
|
|
import type { ModelDefinition } from './types.js';
|
|
|
|
const CONTEXT_WINDOW_256K = 256000;
|
|
const CONTEXT_WINDOW_128K = 128000;
|
|
const MAX_OUTPUT_32K = 32000;
|
|
const MAX_OUTPUT_16K = 16000;
|
|
|
|
/**
|
|
* All available Codex models with their specifications
|
|
* Based on https://developers.openai.com/codex/models/
|
|
*/
|
|
export const CODEX_MODELS: ModelDefinition[] = [
|
|
// ========== Recommended Codex Models ==========
|
|
{
|
|
id: CODEX_MODEL_MAP.gpt52Codex,
|
|
name: 'GPT-5.2-Codex',
|
|
modelString: CODEX_MODEL_MAP.gpt52Codex,
|
|
provider: 'openai',
|
|
description:
|
|
'Most advanced agentic coding model for complex software engineering (default for ChatGPT users).',
|
|
contextWindow: CONTEXT_WINDOW_256K,
|
|
maxOutputTokens: MAX_OUTPUT_32K,
|
|
supportsVision: true,
|
|
supportsTools: true,
|
|
tier: 'premium' as const,
|
|
default: true,
|
|
hasReasoning: true,
|
|
},
|
|
{
|
|
id: CODEX_MODEL_MAP.gpt51CodexMax,
|
|
name: 'GPT-5.1-Codex-Max',
|
|
modelString: CODEX_MODEL_MAP.gpt51CodexMax,
|
|
provider: 'openai',
|
|
description: 'Optimized for long-horizon, agentic coding tasks in Codex.',
|
|
contextWindow: CONTEXT_WINDOW_256K,
|
|
maxOutputTokens: MAX_OUTPUT_32K,
|
|
supportsVision: true,
|
|
supportsTools: true,
|
|
tier: 'premium' as const,
|
|
hasReasoning: true,
|
|
},
|
|
{
|
|
id: CODEX_MODEL_MAP.gpt51CodexMini,
|
|
name: 'GPT-5.1-Codex-Mini',
|
|
modelString: CODEX_MODEL_MAP.gpt51CodexMini,
|
|
provider: 'openai',
|
|
description: 'Smaller, more cost-effective version for faster workflows.',
|
|
contextWindow: CONTEXT_WINDOW_128K,
|
|
maxOutputTokens: MAX_OUTPUT_16K,
|
|
supportsVision: true,
|
|
supportsTools: true,
|
|
tier: 'basic' as const,
|
|
hasReasoning: false,
|
|
},
|
|
|
|
// ========== General-Purpose GPT Models ==========
|
|
{
|
|
id: CODEX_MODEL_MAP.gpt52,
|
|
name: 'GPT-5.2',
|
|
modelString: CODEX_MODEL_MAP.gpt52,
|
|
provider: 'openai',
|
|
description: 'Best general agentic model for tasks across industries and domains.',
|
|
contextWindow: CONTEXT_WINDOW_256K,
|
|
maxOutputTokens: MAX_OUTPUT_32K,
|
|
supportsVision: true,
|
|
supportsTools: true,
|
|
tier: 'standard' as const,
|
|
hasReasoning: true,
|
|
},
|
|
{
|
|
id: CODEX_MODEL_MAP.gpt51,
|
|
name: 'GPT-5.1',
|
|
modelString: CODEX_MODEL_MAP.gpt51,
|
|
provider: 'openai',
|
|
description: 'Great for coding and agentic tasks across domains.',
|
|
contextWindow: CONTEXT_WINDOW_256K,
|
|
maxOutputTokens: MAX_OUTPUT_32K,
|
|
supportsVision: true,
|
|
supportsTools: true,
|
|
tier: 'standard' as const,
|
|
hasReasoning: true,
|
|
},
|
|
];
|
|
|
|
/**
|
|
* Get model definition by ID
|
|
*/
|
|
export function getCodexModelById(modelId: string): ModelDefinition | undefined {
|
|
return CODEX_MODELS.find((m) => m.id === modelId || m.modelString === modelId);
|
|
}
|
|
|
|
/**
|
|
* Get all models that support reasoning
|
|
*/
|
|
export function getReasoningModels(): ModelDefinition[] {
|
|
return CODEX_MODELS.filter((m) => m.hasReasoning);
|
|
}
|
|
|
|
/**
|
|
* Get models by tier
|
|
*/
|
|
export function getModelsByTier(tier: 'premium' | 'standard' | 'basic'): ModelDefinition[] {
|
|
return CODEX_MODELS.filter((m) => m.tier === tier);
|
|
}
|