Blank white background with no objects or features visible.

TrueFoundry Named Frost & Sullivan's 2026 Global Transformational Innovation Leader. Read report

تعرّف على TrueForge: مُسخّر الوكلاء مفتوح المصدر والمحايد تجاه الموردين. تكلفة أقل بنسبة 50%. استكشف الآن→

Claude Opus 5.5, GPT-6 Sol and GPT-6 Luna Are Now Live on TrueFoundry AI Gateway

Published: September 23, 2026

Claude Opus 5.5, GPT-6 Sol and GPT-6 Luna Are Now Live on TrueFoundry AI Gateway

Tuesday was a busy day for anyone who runs LLM traffic for a living. Anthropic released Claude Opus 5.5, and minutes later OpenAI put out GPT-6 Sol and GPT-6 Luna, two lower-cost siblings to GPT-6 Astra.

All three are now in the TrueFoundry AI Gateway model catalog, with pricing, context limits and capabilities already filled in. You call them from the same OpenAI-compatible endpoint you use for everything else. No new SDK, no separate integration, no waiting on a gateway release. Change the model string and you're on the new model.

Try them on the TrueFoundry AI Gateway →

What shipped on September 22

Claude Opus 5.5

Anthropic's line is that Opus 5.5 performs at the level of Claude Fable 5.1 on most work, at Opus pricing. The parts that matter for a production budget:

  • $4 per million input tokens and $20 per million output, down from $5 / $25 for Opus 5. Anthropic says typical workloads come out around 40% cheaper because the model also finishes tasks in fewer tokens.
  • Cache reads drop to $0.20 per million (from $0.50). Cache writes are $5 for the five-minute window and $8 for the one-hour window. Batch is half price at $2 / $10.
  • 1M-token context, 128K max output, extended thinking on by default, with reasoning_effort from low up to max.
  • Available from Anthropic directly and through Amazon Bedrock, Google Vertex AI and Microsoft Foundry. Sonnet 5.5 and Haiku 5.5 are due in the coming weeks.

GPT-6 Sol and GPT-6 Luna

Sol and Luna were trained with the same methods as GPT-6 Astra (which landed on September 3 at $10 / $50) and then tuned for cost. OpenAI pitches Sol at recurring coding and agent work, and Luna at high-volume routine jobs like extraction and summarisation.

  • GPT-6 Sol: $2 per million input, $10 per million output. Half the price of the GPT-5.6 model that carried the same name.
  • GPT-6 Luna: $0.10 input, $0.50 output. An order of magnitude below Sol.
  • Roughly 1M-token context for both, with higher rates once a request passes 272K input tokens. Both speak Chat Completions and the Responses API.

The price ladder just got a lot longer

Put September's models side by side and the spread is hard to ignore: Luna at $0.10 per million input tokens, Sol at $2, Opus 5.5 at $4, Astra at $10. A hundred-fold gap between the cheapest and the most expensive option, from two vendors, on two different native APIs.

That gap is the whole argument against picking one default model and sending everything to it. Most production traffic is many easy requests and a few hard ones. Send the easy majority to Luna and the hard tail to Opus 5.5 and the blended bill looks nothing like an all-Opus bill. That only works if switching models is a config change rather than a code change, which is the job the AI Gateway exists to do.

How to turn them on

Step 1: Enable the models in your provider accounts

In the gateway, open Models → your Anthropic account → Models Selection, search for claude-opus-5-5 and tick it. Pricing shows inline ($4 input / $20 output per 1M tokens) because it comes straight from the catalog. Then set Access Control so a frontier-priced model is scoped to the right teams and virtual keys from day one.

Repeat in your OpenAI account for gpt-6-sol and gpt-6-luna.

If you run these models through a cloud instead, the catalog covers those paths too:

  • Claude Opus 5.5: AWS Bedrock (US, EU, AU, JP and global cross-region profiles), Bedrock Mantle, Google Vertex AI, Azure AI Foundry, Microsoft Foundry, OpenRouter.
  • GPT-6 Sol and Luna: Azure OpenAI, Microsoft Foundry, AWS Bedrock (US and global), Bedrock Mantle, OpenRouter.

Don't see a model in your list yet? + Add Model at the bottom of the list adds it by hand. The gateway supports every text model Anthropic and OpenAI publish.

Step 2: Call them

Open the Playground, pick a model, and copy the generated snippet in whichever SDK you use (OpenAI SDK, LangChain, Node.js, cURL and others). The OpenAI Python version:

from openai import OpenAI

client = OpenAI(

   api_key="<your-truefoundry-api-key>",

   base_url="https://gateway.truefoundry.ai",  # or your self-hosted gateway URL

)

# Model IDs are <provider-account>/<model>. Swap the string, keep everything else.

for model in ["anthropic-prod/claude-opus-5-5", "openai-prod/gpt-6-sol", "openai-prod/gpt-6-luna"]:

   r = client.chat.completions.create(

       model=model,

       messages=[{"role": "user", "content": "Summarise this incident in three bullets: ..."}],

       extra_headers={"X-TFY-METADATA": '{"team": "platform", "feature": "incident-summary"}'},

   )

   print(model, "->", r.choices[0].message.content)

Model IDs are namespaced as <your-provider-account>/<model>, so anthropic-prod/claude-opus-5-5 and openai-prod/gpt-6-luna are a one-line swap from each other. The X-TFY-METADATA header tags each call so spend shows up per team or per feature in the metrics view.

Step 3 (optional): Put all three behind one virtual model

Create a virtual model and pick Auto Routing. The gateway classifies each request as simple, medium or complex and sends it to the target you assign to that tier. Luna for simple, Sol for medium, Opus 5.5 for complex is a sensible starting map. In our benchmarks this kind of routing cut cost 50-70% at about 98% of quality. Add Opus 5 or Astra as a fallback target. Your application calls one model name throughout.

Before you move production traffic

  • Pricing is public and versioned. Every rate in this post comes from site at truefoundry.com/models.
  • Budgets, rate limits and guardrails already apply. These are ordinary catalog models, so whatever per-team policy you have configured covers them from the first request.
  • Sonnet 5.5 and Haiku 5.5 will follow in the catalog as soon as Anthropic releases them.

Start today

Opus 5.5 is the model you reach for when the task is hard and Fable pricing wasn't justified. Sol and Luna are the ones you reach for when it isn't hard at all. Running all of them through TrueFoundry means the decision about which is which lives in gateway config, where you can change it on a Tuesday afternoon without a deploy.

Try Claude Opus 5.5, GPT-6 Sol and GPT-6 Luna on the TrueFoundry AI Gateway →

Related reading

Try now.

One gateway for all your models, MCP servers, and agents.
No credit card needed.

Start free
Table of Contents

One Gateway for Every LLM, Agent and MCP Server

Book a 30-min with our AI expert

Book a Demo

The fastest way to build, govern and scale your AI

Book Demo
Summarize with
ChatGPT logo by OpenAI
Perplexity AI logo
Blurry red snowflake on white background, symmetrical frosty design with soft edges and abstract shape.

Discover More

August 26, 2026
|
5 min read

Gemini 3 Pro: Benchmarks and How to Use It via Gateway

November 5, 2025
|
5 min read

توطين البيانات في عصر الذكاء الاصطناعي الوكيل: كيف تمكّن بوابات الذكاء الاصطناعي التوسع السيادي والامتثال

October 5, 2023
|
5 min read

<Webinar> عرض الذكاء الاصطناعي التوليدي للمؤسسات

Best Fine Tuning Tools for Model Training
May 3, 2024
|
5 min read

أفضل 6 أدوات ضبط دقيق لتدريب النماذج في عام 2026

September 23, 2026
|
5 min read

Claude Opus 5.5, GPT-6 Sol and GPT-6 Luna Are Now Live on TrueFoundry AI Gateway

نماذج اللغة الكبيرة والذكاء الاصطناعي التوليدي
الهندسة والمنتج
September 23, 2026
|
5 min read

Agent Harness Best Practices: 10 Rules for Production Agents

No items found.
September 23, 2026
|
5 min read

GPT-6 Astra Pricing: Where Caching Still Pays at $10 Input

No items found.
AI guardrails in enterprise
September 23, 2026
|
5 min read

آليات حماية الذكاء الاصطناعي في المؤسسات: ضمان الابتكار الآمن

أدوات LLM
No items found.

Recent Blogs

Black left pointing arrow symbol on white background, directional indicator.
Black left pointing arrow symbol on white background, directional indicator.
Take a quick product tour
Start Product Tour
Product Tour