Baltor Get started

Endpoints

Model Oracle AI

A hosted service with its own key and prices. This page lists the addresses it answers, the facts its documentation states, and the setup of each harness.

Addresses and facts

  • OpenAI Chat Completions: https://api.modeloracle.com/api/v1 models.dev, read
Authentication
Authorization: Bearer, with the key in MODEL_ORACLE_API_KEY models.dev, read
Structured output
Unknown
Tool calling
15 of 15 listed models The share of this provider's models that models.dev records with tool calling. models.dev, read
Rate limits
Unknown
Prices
Unknown
Data retention
Unknown
Documentation
Read the page models.dev, read
Output limits Baltor recorded
Unknown

Harness setup

Replace auto with the model you want.

OpenCode

Put this in opencode.json in your project folder:

{
  "$schema": "https://opencode.ai/config.json",
  "provider": {
    "model-oracle-ai": {
      "npm": "@ai-sdk/openai-compatible",
      "name": "Model Oracle AI",
      "options": {
        "baseURL": "https://api.modeloracle.com/api/v1",
        "apiKey": "{env:MODEL_ORACLE_API_KEY}"
      },
      "models": {
        "auto": {
          "name": "auto"
        }
      }
    }
  }
}
  • OpenCode reads any OpenAI-compatible address through the @ai-sdk/openai-compatible package, and an address that speaks the Responses API through @ai-sdk/openai.

From OpenCode documentation, read .

Pi

Put this in ~/.pi/agent/models.json:

{
  "providers": {
    "model-oracle-ai": {
      "baseUrl": "https://api.modeloracle.com/api/v1",
      "api": "openai-completions",
      "apiKey": "$MODEL_ORACLE_API_KEY",
      "models": [
        {
          "id": "auto"
        }
      ]
    }
  }
}
  • The apiKey field can name an environment variable as $NAME.

From Pi documentation, read .

Codex

Codex speaks only the Responses API, and Model Oracle AI documents no Responses address. A gateway that offers one can sit in between.

  • Codex speaks the Responses API only: responses is the one supported wire API of a custom provider. Ollama and LM Studio are built in and start with --oss.

From Codex documentation, read .

Claude Code

Claude Code sends Anthropic Messages requests, and Model Oracle AI documents no such address. A gateway that translates to that API can sit in between.

  • Claude Code sends Anthropic Messages requests to ANTHROPIC_BASE_URL. Anthropic says it does not support routing Claude Code to models other than Claude through any gateway, so some features may not work with another model.

From Claude Code documentation, read .

Models it lists

Prices in US dollars per million tokens, input and output, as models.dev, read records them.

ModelInputOutputContextAs of
Auto autoUnknownUnknown1,000,000
Claude Fable 5 claude-fable-5UnknownUnknown1,000,000
Claude Haiku 4.5 (latest) claude-haiku-4.5UnknownUnknown200,000
Claude Opus 4.8 claude-opus-4.8UnknownUnknown1,000,000
Claude Sonnet 5 claude-sonnet-5UnknownUnknown1,000,000
DeepSeek V4 Pro deepseek-v4-proUnknownUnknown1,000,000
GLM-5.2 glm-5.2UnknownUnknown1,000,000
GPT-4.1 gpt-4.1UnknownUnknown1,047,576
GPT-4.1 mini gpt-4.1-miniUnknownUnknown1,047,576
GPT-5 gpt-5UnknownUnknown400,000
GPT-5.4 gpt-5.4UnknownUnknown1,050,000
GPT-5.4 mini gpt-5.4-miniUnknownUnknown400,000
GPT-5.4 nano gpt-5.4-nanoUnknownUnknown400,000
GPT-5.5 gpt-5.5UnknownUnknown1,050,000
o4-mini o4-miniUnknownUnknown200,000

Sources of this page