bedrock-claude-opus-4-82 provider routesAvailableClaude Opus 4.8 through SandBase OpenAI-compatible routing. 1M context, 128k output.
Multi-turn dialogue, system prompts.
SSE chunks for incremental output.
Structured arguments via JSON schemas.
Pass images alongside the prompt.
Text and image to short video, async.
Coming soon.
Same canonical model, separate upstream routes. Use the slug from the route you want to call.
This example calls the selected Amazon Bedrock route with bedrock-claude-opus-4-8.
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: 'bedrock-claude-opus-4-8',
messages: [
{ role: 'user', content: 'Write me a haiku about gateways.' },
],
});
console.log(res.choices[0].message.content);