From 5062058b6afc7e4b718d222631b663598887ea62 Mon Sep 17 00:00:00 2001 From: zerone0x Date: Tue, 20 Jan 2026 01:25:22 +0800 Subject: [PATCH] feat(openrouter): add openai/gpt-5.1-codex-max model Add GPT-5.1-Codex-Max model to OpenRouter provider. This model is available in OpenRouter's API but was missing from models.dev. Pricing sourced from OpenRouter API. Co-Authored-By: Claude --- .../models/openai/gpt-5.1-codex-max.toml | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 providers/openrouter/models/openai/gpt-5.1-codex-max.toml diff --git a/providers/openrouter/models/openai/gpt-5.1-codex-max.toml b/providers/openrouter/models/openai/gpt-5.1-codex-max.toml new file mode 100644 index 000000000..5e160b6f0 --- /dev/null +++ b/providers/openrouter/models/openai/gpt-5.1-codex-max.toml @@ -0,0 +1,24 @@ +name = "GPT-5.1-Codex-Max" +family = "gpt-codex" +release_date = "2025-11-13" +last_updated = "2025-11-13" +attachment = true +reasoning = true +temperature = true +knowledge = "2024-09-30" +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 1.10 +output = 9.00 +cache_read = 0.11 + +[limit] +context = 400_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"]