Skip to content
Dashboard

Claude Fable 5 access restored on AI Gateway

Product, AI Gateway
import { streamText } from 'ai';
const result = streamText({
model: 'anthropic/claude-fable-5',
prompt: 'Summarize this quarterly report and list the key risks.',
providerOptions: {
gateway: {
models: ['anthropic/claude-opus-4.8', 'anthropic/claude-sonnet-5'],
},
},
});

Call Fable 5 with model fallbacks. This request will fall back to Opus 4.8, then Sonnet 5, if the safety classifier is triggered.

Ready to deploy?