docs: update models for GPT-6 Astra support - #736
Open
tembo[bot] wants to merge 1 commit into
Open
Conversation
Documents the GPT-6 Astra model added in tembo/monorepo#11044, including the supported models table, agent harness model lists (Codex, OpenCode, Pi, fx), reasoning-level support, gateway pricing, and the coding agents summary table.
tembo
Bot
requested review from
Coleary005,
DarrenBaldwin07 and
cooper-gadd
as code owners
September 5, 2026 13:05
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Automations to automatically generate PRs for you. |
Contributor
Author
|
Requesting review from @DarrenBaldwin07 who has experience with the following files modified in this PR:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changed
gpt-6-astra) to the supported models table infeatures/models.mdx.features/agents.mdx, and updated the Codex description to note it also supportsmax/ultrareasoning effort.resources/pricing.mdx.resources/snippets/coding-agents-table.mdx.Why
The monorepo added runtime support for GPT-6 Astra across the Codex, OpenCode, Pi, and fx harnesses, but the docs only listed models through GPT-5.6. Without this update, the docs undercount the supported model catalog and omit gateway pricing for the new model.
Evidence
tembo/monorepo#11044"feat(models): add GPT-6 Astra runtime support" (commitc62bac4793), which addsgpt-6-astratoapps/api/src/server/models/index.ts(requiresApiKey: true,reasoningLevels: ['low','medium','high','xhigh','max']) and to the Codex/OpenCode/Pi/fx harness definitions underpackages/agent-runtime/src/runtime/harness/*/definition.ts. Codex'sreasoningLevelsByModeladditionally grantsmaxandultraforgpt-6-astra, matching GPT-5.6 Sol/Terra.apps/api/tests/models.test.ts(exposes GPT-6 Astra on every compatible harness) confirms it is exposed on codex/opencode/pi/fx and ordered beforegpt-5.6-solin each harness's model list.apps/litellm/litellm-config.jsondefinesgpt-6-astracosts (input_cost_per_token: 0.00001,output_cost_per_token: 0.00005,cache_creation_input_token_cost: 0.0000125,cache_read_input_token_cost: 0.000001). The existing gateway margin constantCREDIT_MARGIN = 1.15inapps/api/src/services/tokenUsage.tsapplied to these base costs reproduces the documented per-1M-token prices ($11.50 / $57.50 / $14.375 / $1.15) — verified against the existingkimi-k3row, whose displayed price is exactly itslitellm-config.jsoncost × 1.15.Confidence
This is a merged, fully tested feature (dedicated model + harness + pricing tests). All new model list entries and the pricing row are placed in the same position as the source code's model ordering, and the pricing math is validated against an existing, unambiguous example (
kimi-k3) rather than guessed.cc @benja
Note
Low Risk
Documentation-only updates to model lists and pricing; no application code or runtime behavior changes.
Overview
Documents GPT-6 Astra (
gpt-6-astra) now that runtime support exists in Codex, OpenCode, Pi, and fx.The supported models table in
features/models.mdxadds the model as OpenAI with BYOK required. Tembo Gateway pricing inresources/pricing.mdxadds a row ($11.50 / $57.50 input/output per 1M tokens, with cache create/read).Agents docs expand the Codex blurb to cover the GPT-6 family and note that GPT-6 Astra supports max and ultra reasoning (alongside GPT-5.6 Sol/Terra). GPT-6 Astra is prepended to the model lists for Codex, OpenCode, Pi, and fx. The reusable coding agents snippet lists
gpt-6-astraamong Codex’s additional models.Reviewed by Cursor Bugbot for commit d8623d8. Bugbot is set up for automated code reviews on this repo. Configure here.