For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
Resources
Log inGet a demo
GuidesAPI reference
GuidesAPI reference
    • Get Started
  • Features
    • Projects
    • Cost Governance and Savings
      • Overview
      • Single Provider
      • Priority
      • Performance
      • Intelligent
    • Context Compression
UnifiedAgent HandlerGateway
UnifiedAgent HandlerGateway
Resources
Log inGet a demo
FeaturesRouting Policies

Single provider

Route all requests to one provider.
Was this page helpful?
Previous

Routing policies

Next

Priority

Built with

The single strategy routes every request to a single configured provider. No failover, no load balancing — just deterministic routing.

Best for: Dev/test environments or single-provider setups where you want predictable behavior.

1{
2 "name": "Simple OpenAI",
3 "default_strategy": {
4 "type": "fallback",
5 "providers": [
6 { "provider": "openai", "model": "gpt-5.2" }
7 ]
8 }
9}

For production workloads, consider Priority or Intelligent routing for automatic failover and cost optimization.