# GPT-6 Sol — coming soon to AI/ML API import requests r = requests.post( "https://api.aimlapi.com/v1/chat/completions", headers={"Authorization": "Bearer " + AIMLAPI_KEY}, json={ "model": "openai/gpt-6-sol", "messages": [ { "role": "user", "content": "Hello!" } ] }, ) print(r.json())
// GPT-6 Sol — coming soon to AI/ML API const r = await fetch("https://api.aimlapi.com/v1/chat/completions", { method: "POST", headers: { Authorization: `Bearer ${process.env.AIMLAPI_KEY}`, "Content-Type": "application/json", }, body: JSON.stringify({ "model": "openai/gpt-6-sol", "messages": [ { "role": "user", "content": "Hello!" } ] }), }); console.log(await r.json());
# GPT-6 Sol — coming soon to AI/ML API curl -X POST https://api.aimlapi.com/v1/chat/completions \ -H "Authorization: Bearer $AIMLAPI_KEY" \ -H "Content-Type: application/json" \ -d '{"model":"openai/gpt-6-sol","messages":[{"role":"user","content":"Hello!"}]}'
OpenAI-compatible — swap the base URL and it works with your existing SDK.
| Type | Price |
|---|---|
| Input | |
| Output | |
| Cached input |
Cache writes are billed at $3.25 / 1M tokens. Coming soon on AI/ML API.
| Model | Input | Output | Context | Best for |
|---|---|---|---|---|
GPT-6 Sol This page | Coming soon — everyday coding and agents | |||
| Agentic workflows and computer use | ||||
| Frontier reasoning + agents | ||||
| Everyday coding + agents |
GPT-6 Sol is coming soon to AI/ML API. It will be served through the OpenAI-compatible chat completions endpoint under the model ID openai/gpt-6-sol.
On AI/ML API, GPT-6 Sol will cost $2.6 per million input tokens, $13 per million output tokens and $0.26 per million cached input tokens, with cache writes at $3.25 per million. Coming soon on AI/ML API.
GPT-6 Astra is the flagship of the GPT-6 family and is available on AI/ML API today. GPT-6 Sol sits below it as the everyday model of the line, for coding, reasoning and agentic work that does not need the heaviest tier.
Yes. OpenAI models on AI/ML API use the same OpenAI-compatible chat completions endpoint, so you can build against GPT-6 Astra today and switch the model ID to openai/gpt-6-sol when it goes live.