openai/gpt-6-sol
Release date: 2026-09-22
1,050,000 context · $2.00/M input tokens · $10.00/M output tokens
OpenAI: GPT-6 Sol supports text and image inputs, coding, and tool-assisted tasks.
Pay-per-use
No upfront costs, pay only for what you use
Use the following code examples to integrate with our API:
import OpenAI from 'openai';
if (!process.env.WAVESPEED_API_KEY) throw new Error('Set WAVESPEED_API_KEY');
const client = new OpenAI({
apiKey: process.env.WAVESPEED_API_KEY,
baseURL: 'https://llm.wavespeed.ai/v1',
timeout: 120_000,
maxRetries: 2,
});
try {
const response = await client.chat.completions.create({
model: 'openai/gpt-6-sol',
messages: [{ role: 'user', content: 'Hello!' }],
});
console.log(response.choices[0]?.message?.content ?? '');
} catch (error) {
console.error('LLM request failed:', error);
process.exitCode = 1;
}import OpenAI from 'openai';
if (!process.env.WAVESPEED_API_KEY) throw new Error('Set WAVESPEED_API_KEY');
const client = new OpenAI({
apiKey: process.env.WAVESPEED_API_KEY,
baseURL: 'https://llm.wavespeed.ai/v1',
timeout: 120_000,
maxRetries: 2,
});
try {
const response = await client.chat.completions.create({
model: 'openai/gpt-6-sol',
messages: [{ role: 'user', content: 'Hello!' }],
});
console.log(response.choices[0]?.message?.content ?? '');
} catch (error) {
console.error('LLM request failed:', error);
process.exitCode = 1;
}OpenAI: GPT-6 Sol supports text and image inputs, coding, and tool-assisted tasks.
Use model openai/gpt-6-sol with https://llm.wavespeed.ai/v1/chat/completions.
Supports streaming, function calling, and JSON schema output. Reasoning effort can be set with reasoning_effort in Chat Completions or reasoning.effort in Responses.
Standard input: $2 per million tokens. Output: $10 per million tokens. Cache reads: $0.2 per million tokens.
For requests above 272,000 input tokens, input and cache rates double and output rates increase by 50%.
openai/gpt-6-sol
OpenAI: GPT-6 Sol supports text and image inputs, coding, and tool-assisted tasks.
Input
$2 /M
Output
$10 /M
Context
1050K
Max Output
128K
Vision
Supported
Tool Use
Supported
Access GPT 6 Sol through our unified API — OpenAI-compatible, no cold starts, transparent pricing.
Pricing on WaveSpeedAI: $2.00 per million input tokens and $10.00 per million output tokens. Prompt caching and batch processing are billed separately and reduce effective cost on long, repetitive workloads.
GPT 6 Sol supports up to 1050K tokens of context with up to 128K tokens of output per request.
WaveSpeedAI exposes GPT 6 Sol at https://llm.wavespeed.ai/v1 through the OpenAI-compatible Chat Completions interface. Most OpenAI SDK clients work by changing the base URL and API key; optional fields depend on the selected model.
Sign in to WaveSpeedAI, create an API key in Access Keys, then send a request to https://llm.wavespeed.ai/v1/chat/completions with the model id shown above. Check the current model catalog for availability, capabilities, and pricing.