Skip to main content

Overview

Circuit Breaker in Bifrost Enterprise automatically reroutes LLM requests to a fallback provider when a primary provider endpoint shows signs of degradation. Instead of letting throttled or degraded requests fail, Bifrost detects the signal in the response headers, opens the circuit, and transparently redirects subsequent requests to your configured fallback — until the cooldown window expires and the primary is retried.

Key Features


How It Works

Every request that matches a circuit breaker policy passes through two hooks:
  1. Pre-request hook — checks whether the circuit is open. If open, the request is immediately rerouted to the fallback provider and model. The original target is not contacted.
  2. Post-response hook — evaluates the response headers from the primary target against the policy’s condition. If the condition matches, the circuit opens for the configured cooldown duration.
The circuit closes automatically once the cooldown expires. The next request to the primary is a probe — if the signal fires again, the circuit reopens; otherwise it stays closed.

Configuration

Web UI

Navigate to Circuit Breaker in the Bifrost dashboard to create and manage policies.
Create circuit breaker policy sheet showing provider, model, and signal configuration

config.json

Add a circuit_breaker_config block at the root of your config.json:

Policy Properties

Condition Properties

Signal Properties


Signals

Signals define what Bifrost watches for in the provider’s HTTP response. Each signal inspects a single response header using one of three match modes:

Key-Level Sub-Circuits

By default, a policy uses a single shared circuit for all API keys serving the configured primary provider and model. If one key is degraded, the circuit opens and all requests to that provider+model route to the fallback — even requests that could have been served by a healthy key. Set primary_key_ids to a list of key UUIDs to enable per-key tracking:
With sub-circuits, each key gets its own circuit state. The main circuit opens only when all listed keys have tripped. Until that point, healthy keys continue to receive traffic while degraded keys are excluded.

Cooldown

When the circuit opens, Bifrost blocks the primary provider for a cooldown duration before probing it again.

Static cooldown

Set default_cooldown to a Go duration string. The circuit stays open for exactly this duration:
Valid units: ns, us, ms, s, m, h.

Header-driven cooldown

Some providers return a header telling clients how long to back off. Set cooldown_header to read that value (expected in milliseconds):
When retry-after-ms is present and parsable, Bifrost uses its value as the cooldown. If the header is absent or cannot be parsed, default_cooldown is used as the fallback.

Example: Azure PTU → PAYG Spillover

Azure OpenAI Provisioned Throughput Units (PTU) offer predictable latency at fixed capacity. When PTU capacity is exhausted, Azure signals spillover via a response header. This policy detects that signal and routes subsequent requests to a Pay-As-You-Go deployment until the PTU recovers.
What happens:
  1. Requests arrive targeting gpt-4o-ptu on Azure.
  2. When PTU capacity is exhausted, Azure returns X-Ms-Is-Spilled-Over: true in the response.
  3. Bifrost detects the header, opens the circuit for 30 seconds.
  4. All subsequent requests within the cooldown window are transparently rerouted to gpt-4o-paygo — no changes required in your application.
  5. After 30 seconds, Bifrost probes the PTU deployment again. If spillover is no longer signalled, the circuit closes and PTU traffic resumes.