From c5af52c815243e1856f971d879bde16c18c6f0cb Mon Sep 17 00:00:00 2001 From: "@taltas" <6816042+taltas@users.noreply.github.com> Date: Tue, 22 Sep 2026 22:42:42 +0000 Subject: [PATCH 1/2] docs(providers): document GPT-6 Sol and Luna support Document gpt-6-sol and gpt-6-luna on the OpenAI provider page (pricing, 1.05M context, 128K output, reasoning efforts none through max, long-context and cached-read pricing) and on the ChatGPT Plus/Pro page (Codex subscription availability for Plus, Pro, Business, Enterprise, and Edu accounts). --- docs/providers/openai-chatgpt-plus-pro.md | 6 ++++++ docs/providers/openai.md | 16 +++++++++++++--- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/docs/providers/openai-chatgpt-plus-pro.md b/docs/providers/openai-chatgpt-plus-pro.md index 8571a093..3a213d46 100644 --- a/docs/providers/openai-chatgpt-plus-pro.md +++ b/docs/providers/openai-chatgpt-plus-pro.md @@ -40,6 +40,12 @@ keywords: 5. Back in Zoo Code settings, pick a model from the dropdown. 6. Save. +## GPT-6 Sol and Luna + +GPT-6 Sol (`gpt-6-sol`) and GPT-6 Luna (`gpt-6-luna`) are available through this provider for ChatGPT Plus, Pro, Business, Enterprise, and Edu accounts. Select either model after signing in; availability remains controlled by OpenAI for the signed-in account. + +Both models support image input and reasoning effort levels from `none` through `max` (Zoo Code defaults to `medium`). For the upstream rollout and model contracts, see OpenAI's [GPT-6 Sol](https://developers.openai.com/api/docs/models/gpt-6-sol) and [GPT-6 Luna](https://developers.openai.com/api/docs/models/gpt-6-luna) model pages. + ## Tips and Notes diff --git a/docs/providers/openai.md b/docs/providers/openai.md index 99ec80e3..eb8e1137 100644 --- a/docs/providers/openai.md +++ b/docs/providers/openai.md @@ -15,7 +15,7 @@ keywords: # Using OpenAI With Zoo Code -Zoo Code supports accessing models directly through the official OpenAI API, including the latest GPT-5 family with advanced features like reasoning effort control and verbosity settings. +Zoo Code supports accessing models directly through the official OpenAI API, including the latest GPT-6 and GPT-5 families with advanced features like reasoning effort control and verbosity settings. :::info Want to use a ChatGPT Plus/Pro subscription instead? Use the **OpenAI – ChatGPT Plus/Pro** provider to sign in via OAuth (no API key): [OpenAI – ChatGPT Plus/Pro](/providers/openai-chatgpt-plus-pro). @@ -38,7 +38,9 @@ Use the **OpenAI – ChatGPT Plus/Pro** provider to sign in via OAuth (no API ke Zoo Code supports all models available through OpenAI's API. -For the complete, up-to-date model list and capabilities, see [OpenAI's models documentation](https://platform.openai.com/docs/models). +GPT-6 Sol (`gpt-6-sol`) and GPT-6 Luna (`gpt-6-luna`) are OpenAI's cost-efficient GPT-6 models, announced on September 22, 2026 at roughly half the API price of their GPT-5.6 counterparts. Both support text and image input, a 1,050,000-token context window, up to 128,000 output tokens, and reasoning effort levels from `none` through `max`. Prompts above 272,000 input tokens use long-context pricing, cached input reads are discounted by 90%, and Flex and Batch are priced at 50% of standard rates. + +For the complete, up-to-date model list and capabilities, see [OpenAI's models documentation](https://platform.openai.com/docs/models) and the [GPT-6 Sol](https://developers.openai.com/api/docs/models/gpt-6-sol) and [GPT-6 Luna](https://developers.openai.com/api/docs/models/gpt-6-luna) model pages. --- @@ -58,7 +60,15 @@ For the complete, up-to-date model list and capabilities, see [OpenAI's models d ### Reasoning Effort Control -For models that support reasoning (GPT-5, o1, o3, o4 families), you can control how deeply the model thinks: +For models that support reasoning (GPT-6, GPT-5, o1, o3, o4 families), you can control how deeply the model thinks: + +**GPT-6 Sol/Luna Models:** +- `none` - Fastest responses without explicit reasoning +- `low` - Quick responses with light reasoning +- `medium` (default) - Balanced reasoning and response time +- `high` - Deep reasoning for complex problems +- `xhigh` - Extended reasoning for demanding problems +- `max` - Maximum reasoning depth **GPT-5 Models:** - `minimal` - Fastest responses with basic reasoning From 88b2deeec0889627602d7b01fdb9e563c5170a16 Mon Sep 17 00:00:00 2001 From: "@taltas" <6816042+taltas@users.noreply.github.com> Date: Tue, 22 Sep 2026 22:51:45 +0000 Subject: [PATCH 2/2] docs(providers): note GPT-6 Sol/Luna gateway availability OpenRouter, Vercel AI Gateway, and NanoGPT list gpt-6-sol/gpt-6-luna in their live catalogs (verified against their public /models APIs); Zoo Code discovers them dynamically. OpenCode Go does not list them. --- docs/providers/openai.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/providers/openai.md b/docs/providers/openai.md index eb8e1137..8834bfbb 100644 --- a/docs/providers/openai.md +++ b/docs/providers/openai.md @@ -42,6 +42,8 @@ GPT-6 Sol (`gpt-6-sol`) and GPT-6 Luna (`gpt-6-luna`) are OpenAI's cost-efficien For the complete, up-to-date model list and capabilities, see [OpenAI's models documentation](https://platform.openai.com/docs/models) and the [GPT-6 Sol](https://developers.openai.com/api/docs/models/gpt-6-sol) and [GPT-6 Luna](https://developers.openai.com/api/docs/models/gpt-6-luna) model pages. +OpenRouter, Vercel AI Gateway, and NanoGPT also list `gpt-6-sol` and `gpt-6-luna` in their live model catalogs at OpenAI's standard rates, and Zoo Code discovers them dynamically through those providers. OpenCode Go does not currently list the GPT-6 models. + --- ## Configuration in Zoo Code