
openai/gpt-5.4 · 429 · retry-after 60
anthropic/claude-sonnet-4-6 · 200 · streaming
// stream starts on openai/gpt-5.4chunk 0: 'The core'chunk 1: ' idea is'// 503 at chunk 2 — Router swaps to Claudechunk 2: ' to treat'chunk 3: ' async as'// your client never saw the transition
// stream starts on openai/gpt-5.4chunk 0: 'The core'chunk 1: ' idea is'// 503 at chunk 2 — Router swaps to Claudechunk 2: ' to treat'chunk 3: ' async as'// your client never saw the transition
client.chat.completions.create({model: 'openai/gpt-5.4',messages: [...],// the one field that gives you fallbacksmodels: ['anthropic/claude-sonnet-4-6', 'google/gemini-3.1-pro'],});// no LiteLLM. no custom retry wrapper. just OpenAI SDK + one field.
client.chat.completions.create({model: 'openai/gpt-5.4',messages: [...],// the one field that gives you fallbacksmodels: ['anthropic/claude-sonnet-4-6', 'google/gemini-3.1-pro'],});// no LiteLLM. no custom retry wrapper. just OpenAI SDK + one field.
