GPT-6 Astra
Availablegpt-6-astraOpenAItextOpenAI’s latest and most capable model for end-to-end reasoning, coding, computer use, and research. Base pricing applies through 272k input tokens; Azure long-context rates apply above that threshold. 1.05M context, 128… Show more
OpenAI’s latest and most capable model for end-to-end reasoning, coding, computer use, and research. Base pricing applies through 272k input tokens; Azure long-context rates apply above that threshold. 1.05M context, 128k output.
Input / Output per 1M tokens
$10.00 / $50.00
Context window
1.05M
Provider routes
1
Capabilities
StreamingVision
Providers
Choose a route to view its rates and API example.
API example
Connect with your existing OpenAI-compatible SDK.
chat.ts
import OpenAI from 'openai';
const client = new OpenAI({
baseURL: 'https://api.miavo.xyz/v1',
apiKey: process.env.MACAW_API_KEY!,
});
const res = await client.chat.completions.create({
model: 'gpt-6-astra',
messages: [
{ role: 'user', content: 'Write me a haiku about gateways.' },
],
});
console.log(res.choices[0].message.content);