EveryDev.ai
Subscribe
Home
Tools

3,891+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2782
  • Coding1973
  • Infrastructure825
  • Projects603
  • Marketing598
  • Research520
  • Analytics468
  • Design462
  • MCP419
  • Testing346
  • Security323
  • Data305
  • Integration224
  • Prompts220
  • Communication210
  • Extensions196
  • Learning179
  • Voice175
  • Commerce160
  • DevOps135
  • Web95
  • Finance31
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. ARBR
    ARBR icon

    ARBR

    LLM Orchestration
    Featured

    An open-source, self-hosted LLM control plane that routes AI requests to the right model, observes every token, and enforces cost and governance policies before inference.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully open-source, MIT-licensed self-hosted deployment with all features included.

    Engagement

    Available On

    Windows
    Web
    API
    SDK
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    LLM OrchestrationObservability PlatformsAI Infrastructure

    Alternatives

    FreeLLMAPILangChainPrime Intellect
    Developer
    Project ARBREst. 2026

    Listed Sep 2026

    About ARBR

    ARBR is an open-source, MIT-licensed AI gateway and control plane built for teams running LLM workloads in production. It sits between applications and every major model provider, classifying and routing each request, enforcing budgets and guardrails, and logging structured cost and latency events — all before a single token reaches a provider. A hosted option is available at app.projectarbr.com for teams that prefer not to self-host.

    What It Is

    ARBR is a self-hosted model optimisation and governance control plane. It exposes a single OpenAI-compatible endpoint that any existing SDK, agent framework, or chat UI can point at without code changes. Behind that endpoint, ARBR classifies each request by task type and difficulty, applies human-configured routing rules or an AI routing policy, enforces per-application budgets and rate limits, and logs every call as a structured RequestRecord in MongoDB. The product is designed around a six-step optimisation lifecycle: observe real workloads, discover savings opportunities, build evaluation evidence, evaluate candidate models, approve and roll out changes, then verify the outcome with measured realised savings.

    Architecture and Integration Model

    ARBR can run standalone or in front of an existing LiteLLM proxy. Its gateway exposes two endpoints:

    • Arbr-native (POST /v1/chat) — full attribution, task classification, routing rules, budgets, and caching
    • OpenAI-compatible (POST /v1/chat/completions) — drop-in replacement for the OpenAI chat API, supporting SSE streaming

    Provider connectivity spans Anthropic, OpenAI, Google Gemini, Amazon Bedrock, Azure OpenAI, Vertex AI, Groq, DeepSeek, Mistral, Moonshot, xAI, NVIDIA NIM, and any OpenAI-compatible or self-hosted endpoint. The model registry is MongoDB-backed and auto-syncs pricing and benchmark data from LiteLLM's public catalog, covering 3,000+ models according to the project homepage.

    Human-Governed Routing by Design

    A core design principle of ARBR is that no routing change happens without human approval. The cost guardrail and AI routing policy only activate after a human enables them. Recommendations — such as flagging premium-model overuse on cheap task types — remain advisory until accepted. Canary and shadow rollouts are built in, but promotion always requires a human decision. The project README states this is permanent by design, not a deferred feature.

    Routing decisions are recorded on every call with a routingDecision field (explicit, passthrough, rule, auto, ai, cache, semantic_cache, fallback, budget, canary, external) and a routingExplain field capturing the non-derivable reasoning behind each decision.

    Observability and Governance

    Every request becomes a structured event attributed by application, workflow, team, model, provider, task type, and user. The dashboard surfaces:

    • Total requests, cost, average latency, and realised savings over configurable windows
    • Spend by provider, model, and application
    • Cache hit rates and savings (with provider-specific cache token pricing)
    • Per-user spend and realised savings (re-priced at the originally requested model's rate)

    Events can be exported via OpenTelemetry to Datadog, Grafana, or Prometheus. Governance controls include per-application gateway API keys, budgets that alert, downgrade, or block at a configured cap, prompt-injection checks, output guardrails, and kill switches. Authentication supports a single admin key, OIDC (Okta, Auth0, Google Workspace, Keycloak), or trusted-header mode for per-user identity and role-based access.

    Setup Path

    ARBR ships with a demo mode that seeds realistic data so dashboards, the recommendation engine, and routing controls work without any provider keys. The one-command Docker path is:

    git clone ... && docker compose up
    

    The dashboard opens at http://localhost:4100. Provider keys can be added via the dashboard (encrypted at rest) or environment variables (which take precedence). JavaScript and Python client packages (arbr-client) are published to npm and PyPI. A standalone CLI (arbr-audit) audits a request log or wraps a live coding-agent session for cost analysis with no server or database required.

    Update: v0.3.0

    The latest release is v0.3.0, published July 22, 2026. The repository was created in June 2026 and last pushed in September 2026, indicating active early development. Features that the README notes have shipped since earlier versions include budgets, gateway API keys, governance controls, horizontal scale support via Docker Compose overlays, and OIDC authentication. A Helm chart and traffic-capture-to-fine-tuning-dataset feature are listed on the public roadmap as not yet shipped.

    ARBR - 1

    Community Discussions

    Be the first to start a conversation about ARBR

    Share your experience with ARBR, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully open-source, MIT-licensed self-hosted deployment with all features included.

    • Self-hosted via Docker Compose or bare metal
    • OpenAI-compatible gateway
    • Multi-provider support
    • Model routing, budgets, and governance
    • Full observability dashboard

    Capabilities

    Key Features

    • OpenAI-compatible gateway endpoint
    • Self-hosted deployment via Docker Compose
    • Multi-provider support (Anthropic, OpenAI, Gemini, Bedrock, Azure, Groq, DeepSeek, Mistral, and more)
    • Automatic model routing with rules, cost guardrails, and AI routing policy
    • Difficulty-aware routing (easy tasks to cheaper models, hard tasks to stronger ones)
    • Per-application budgets with alert, downgrade, or block actions
    • Rate limiting and gateway API keys
    • Structured request logging (RequestRecord) with full attribution
    • Realised savings tracking (requested vs. served model cost delta)
    • LLM-judge evaluation of live traffic samples
    • Canary and shadow rollout with regression gates
    • Prompt-injection checks and output guardrails
    • Kill switches
    • Semantic and exact-match response caching
    • OpenTelemetry export (Datadog, Grafana, Prometheus)
    • Local React + Vite dashboard
    • Model registry with LiteLLM catalog sync (3,000+ models priced)
    • OIDC and trusted-header authentication modes
    • PII masking in logs
    • JavaScript and Python client SDKs
    • Standalone arbr-audit CLI (no server required)
    • LiteLLM proxy integration
    • SSE streaming support
    • Horizontal scale support across replicas

    Integrations

    OpenAI
    Anthropic
    Google Gemini
    Amazon Bedrock
    Azure OpenAI
    Vertex AI
    Groq
    DeepSeek
    Mistral
    Moonshot
    xAI
    NVIDIA NIM
    LiteLLM
    LangChain
    LibreChat
    OpenWebUI
    Datadog
    Grafana
    Prometheus
    Okta
    Auth0
    Google Workspace
    Keycloak
    MongoDB
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate ARBR and help others make informed decisions.

    Developer

    Project ARBR

    Project ARBR builds an open-source AI gateway and control plane for teams running LLM workloads in production. The project is led by Prasanna Vaidya and Shubham (Gyde) alongside Vaibhav (Domkundwar Foundation). ARBR focuses on human-governed model routing, cost observability, and evidence-backed optimisation — giving engineering teams control over AI spend without lock-in to any single provider.

    Founded 2026
    Read more about Project ARBR
    WebsiteGitHubLinkedInX / Twitter
    1 tool in directory

    Similar Tools

    FreeLLMAPI icon

    FreeLLMAPI

    An open-source, self-hosted router that aggregates free LLM tiers from 34 providers behind a single OpenAI-compatible endpoint with smart routing and automatic failover.

    LangChain icon

    LangChain

    LangChain provides LangSmith, an agent engineering platform, plus open-source frameworks (LangChain, LangGraph, Deep Agents) to help developers build, evaluate, and deploy AI agents.

    Prime Intellect icon

    Prime Intellect

    An integrated compute, training, inference, and sandbox stack for training, deploying, and continuously improving your own AI models.

    Browse all tools

    Related Topics

    LLM Orchestration

    Platforms and frameworks for designing, managing, and deploying complex LLM workflows with visual interfaces, allowing for the coordination of multiple AI models and services.

    221 tools

    Observability Platforms

    Comprehensive platforms that combine metrics, logs, and traces with AI-powered analytics to provide deep insights into complex distributed systems and application behavior.

    123 tools

    AI Infrastructure

    Infrastructure designed for deploying and running AI models.

    383 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions