Skip to content
ATAI Today Brief
HomeNewsConceptsGuidesToolbox
AboutSubscribeUA
Subscribe

AI Today Brief

The daily AI-engineering brief. Built in public. EN · UA.

XTelegramLinkedInYouTubeRSS
NewsConceptsGuidesSubscribeAdvertiseAboutEditorial policyAI disclosurePrivacyTerms

© 2026 AI Today Brief. All rights reserved.

  1. Home/
  2. News/
  3. Tools & releases/
  4. Mozilla AI Releases Otari: An Open-Source LLM Control Plane
Tools & releases

Mozilla AI Releases Otari: An Open-Source LLM Control Plane

July 7, 2026· 4 min read
OKCurated by Oleksandr Kuzmenko, AI Product Engineer·Updated July 7, 2026·Sources cited on every story
AI-assisted · editor-reviewed·How we use AI
Mozilla AI Releases Otari: An Open-Source LLM Control Plane

Otari is a self-hosted, OpenAI-compatible proxy server that centralizes API key management, budget enforcement, and usage tracking across 40+ LLM providers. It allows developers to enforce spending limits before requests are fired.

Why it matters

It provides a unified gateway to control costs and proxy calls across multiple LLM providers locally.

TL;DR

  • 01Centralize keys and budgets across 40+ LLM providers
  • 02Enforce budgets before LLM provider costs are incurred
  • 03Self-hostable with simple Docker/Postgres configuration

Deployment and Configuration

Otari can run in standalone mode via Docker, making it easy to test without complex dependencies:

docker run --rm -p 8000:8000 \
  -e OTARI_CONFIG_YAML='default_pricing: true' \
  mozillaai/otari:latest

Budget and Security

When a request hits the gateway, Otari enforces budgets defined per-key before the request is sent to the provider. The gw- bearer tokens act as virtual keys; you can generate these via the management endpoint and revoke them instantly without rotating your master provider keys (e.g., your actual OpenAI secret).

Built-in Tools

Otari includes a sandboxed Python execution environment (otari_code_execution) and a web search service (otari_web_search). These can be toggled via the tools field in your API requests. For production usage, ensure you configure an external database backend like Postgres rather than the default ephemeral SQLite.

✓ When to use

  • Centralizing multiple model providers in an app
  • Preventing runaway costs in dev/staging environments
  • Managing access for multiple internal teams

What to do today

  • →Run Otari locally using the Docker Quickstart command
  • →Set your master provider keys in the config file
  • →Generate a gateway key for your first test client
#Otari#OpenAI#Docker#PostgreSQL

Sources

  • Otari GitHub Repository
ShareShare on XShare on LinkedIn
← Previous storyNVIDIA Releases Nemotron Labs 3 Puzzle 75B Latent Mixture of Experts ModelNext story →JADEPUFFER: Discovery of First Documented Agentic Ransomware

Related stories

  • Tools & releasesOmniRoute launches as a free unified artificial intelligence gateway
  • Tools & releasesHow Claude Fable shipped sqlite-utils 4.0rc2 for 150 dollars
  • Tools & releasesStrix: Open-source AI penetration testing tool finds and patches vulnerabilities
  • Tools & releasesAnthropic investigates potential macOS session and cache leakage in Claude Code

Email digest

Get the morning AI brief

One email a day — the stories that matter for engineers, founders and tech leads. Human-edited, with links to primary sources.

  • ✓120+ sources scanned daily
  • ✓Edited by a human
  • ✓1 email per day
  • ✓EN + UA

By subscribing you agree to the privacy policy.