@mozilla-ai/pi-otari

Route Pi model requests through Otari with automatic model discovery

Packages

Package details

extension

Install @mozilla-ai/pi-otari from npm and Pi will load the resources declared by the package manifest.

$ pi install npm:@mozilla-ai/pi-otari
Package
@mozilla-ai/pi-otari
Version
0.2.1
Published
Jul 27, 2026
Downloads
529/mo · 529/wk
Author
macaab26
License
Apache-2.0
Types
extension
Size
2.7 MB
Dependencies
0 dependencies · 2 peers
Pi manifest JSON
{
  "extensions": [
    "./src/index.ts"
  ],
  "image": "https://raw.githubusercontent.com/mozilla-ai/pi-otari/main/assets/gallery/otari-logo.png"
}

Security note

Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.

README

Pi is a minimal, extensible terminal coding harness, while Otari is an AI control plane and gateway for routing model requests, managing provider credentials, and tracking usage, budgets, and traces. This extension connects them so Pi can use Otari-managed models.

Demo

Pi Otari extension demo

Requirements

  • Pi 0.81.0 or newer, installed and available as pi (older versions can install the package but the extension will remain disabled and show an upgrade message)
  • Node.js 22.19.0 or newer
  • An Otari workspace API key
  • At least one upstream provider and model enabled in your Otari workspace

Install and use

  1. Install the extension from npm:

    pi install npm:@mozilla-ai/pi-otari
    
  2. Start Pi:

    pi
    
  3. Run /login otari and enter your Otari workspace API key in Pi's secret authentication prompt. This is API-key authentication, not OAuth: the prompt is separate from chat, so the key is not added to model context or sent to an LLM.

    Pi stores the credential in ~/.pi/agent/auth.json, a plaintext file created with user-only permissions (0600). Keep that file out of source control and untrusted backups. Run /logout otari to remove the stored credential.

  4. Make Otari models available in Pi:

    • Run /scoped-models.
    • Search for otari.
    • Enable the models you want to use.
    • Press Ctrl+S to save the scope.
  5. Run /model and select one of the enabled otari models.

  6. Send a prompt normally. No Otari-specific slash command is required. When an Otari model is selected, Pi's status area shows Otari → <model-id>.

Pi sends requests for the selected provider to https://api.otari.ai/v1/chat/completions. Local Pi tools continue to run according to your Pi configuration.

To inspect the Otari models available to Pi from a shell, run:

pi --list-models otari

Update or remove

pi update npm:@mozilla-ai/pi-otari
pi remove npm:@mozilla-ai/pi-otari

Model discovery

After login and during provider refresh, the extension tries GET ${OTARI_BASE_URL}/models. Standalone and self-hosted Otari support this now. Hosted Otari currently falls back to its public managed mzai catalog and will automatically use workspace-scoped /models when that endpoint becomes available.

If no models are found, provide one or more Otari selectors before starting or restarting Pi:

export OTARI_MODELS="anthropic:claude-sonnet-5,mistral:mistral-medium-3-5" # optional for non-mzai models with API keys registered on Otari.ai
pi

These selectors are unverified until the first request. Otari must have the corresponding provider and model enabled for the workspace.

Reasoning levels

Otari models expose Pi's minimal, low, medium, high, xhigh, and max reasoning levels. The extension forwards the selected level unchanged. Pi's default remains medium unless the user configures or selects another level.

Until Otari discovery provides per-model reasoning capabilities, these levels are optimistic: an upstream model may reject a level it does not support. The extension preserves that error without silently retrying at a different level or without reasoning. When the upstream error reports supported values, they appear in Pi's error message.

Non-interactive authentication

For CI, containers, and other noninteractive environments, provide the API key through OTARI_API_KEY:

OTARI_API_KEY=tk_example pi

A key stored through /login otari takes precedence over OTARI_API_KEY. Running /logout otari removes the stored key, but Pi will continue using OTARI_API_KEY if it is set.

Self-hosted Otari

export OTARI_BASE_URL=https://otari.example.com/v1
pi

Then run /login otari. For noninteractive use, set both OTARI_BASE_URL and OTARI_API_KEY.

HTTP is accepted only for loopback development endpoints.

Configuration

Variable Default Description
OTARI_API_KEY none Workspace token or standalone key fallback when no stored credential exists
OTARI_BASE_URL https://api.otari.ai/v1 OpenAI-compatible base URL
OTARI_DISCOVERY_TIMEOUT_MS 5000 Discovery timeout from 1000 to 30000 ms
OTARI_MODELS none Conditional fallback or additional model selectors

Privacy and security

Model requests using otari/* pass through Otari and the selected upstream provider. The extension does not maintain its own credential file. When you use /login otari, Pi stores the API key in ~/.pi/agent/auth.json; when you use OTARI_API_KEY, the key remains environment-provided. The extension stores no prompts, responses, tool content, or telemetry. Pi persists provider model metadata in its native model store. Discovery rejects redirects and never sends a token to the public managed-catalog fallback.

Troubleshooting

  • “pi-otari requires Pi 0.81.0 or newer”: run pi update, then restart Pi. The package uses wildcard Pi peer dependencies, as required for Pi packages, and checks host compatibility at runtime instead of installing a second copy of Pi.
  • No Otari models in /model: run /scoped-models, search for otari, enable models, and press Ctrl+S. If no models are available there, set OTARI_MODELS before starting or restarting Pi.
  • Missing credentials: run /login otari, or set OTARI_API_KEY before starting or restarting Pi.
  • 401/403: run /login otari with a valid replacement key, or update OTARI_API_KEY when no stored credential exists and restart Pi; then confirm workspace access.
  • Unknown model: the selected provider or model is not enabled in your Otari workspace. Enable it in Otari, or select a different Otari model in Pi.
  • Model returns 404 "not found on the provider": the hosted managed catalog lists priced models that may not all be deployed. Pick another model.

Contributing

See CONTRIBUTING.md for development, testing, dependency updates, and release instructions.

License

Apache-2.0