Baltor Get started

Endpoints

Jalapeno Cloud

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.jalapeno-cloud.ai/v1 models.dev, read
Authentication
Authorization: Bearer, with the key in JALAPENO_API_KEY models.dev, read
Structured output
Unknown
Tool calling
17 of 17 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 DeepSeek-V4-Flash with the model you want.

OpenCode

Put this in opencode.json in your project folder:

{
  "$schema": "https://opencode.ai/config.json",
  "provider": {
    "jalapeno": {
      "npm": "@ai-sdk/openai-compatible",
      "name": "Jalapeno Cloud",
      "options": {
        "baseURL": "https://api.jalapeno-cloud.ai/v1",
        "apiKey": "{env:JALAPENO_API_KEY}"
      },
      "models": {
        "DeepSeek-V4-Flash": {
          "name": "DeepSeek-V4-Flash"
        }
      }
    }
  }
}
  • 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": {
    "jalapeno": {
      "baseUrl": "https://api.jalapeno-cloud.ai/v1",
      "api": "openai-completions",
      "apiKey": "$JALAPENO_API_KEY",
      "models": [
        {
          "id": "DeepSeek-V4-Flash"
        }
      ]
    }
  }
}
  • The apiKey field can name an environment variable as $NAME.

From Pi documentation, read .

Codex

Codex speaks only the Responses API, and Jalapeno Cloud 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 Jalapeno Cloud 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
DeepSeek V4 Flash DeepSeek-V4-Flash0.140 USD0.280 USD1,048,576 older than 30 days
DeepSeek V4 Pro DeepSeek-V4-Pro1.60 USD3.38 USD1,048,576 older than 30 days
GLM-5.1 GLM-5.11.38 USD4.40 USD202,752 older than 30 days
GLM-5.2 GLM-5.21.40 USD4.40 USD1,048,576 older than 30 days
Hy3 Hy30.140 USD0.580 USD202,752 older than 30 days
Kimi K2.5 Kimi-K2.50.600 USD3.00 USD262,144
Kimi K2.7 Code Kimi-K2.7-Code0.950 USD4.00 USD271,360 older than 30 days
Kimi K3 Kimi-K33.00 USD15.00 USD1,048,576 older than 30 days
MiniMax-M3 MiniMax-M30.300 USD1.20 USD524,288 older than 30 days
Qwen3-Next 80B-A3B Instruct Qwen3-Next-80B-A3B-Instruct0.150 USD1.50 USD129,024
Qwen3-Next 80B-A3B (Thinking) Qwen3-Next-80B-A3B-Thinking0.150 USD1.50 USD131,072
Qwen3 VL 235B A22B Instruct Qwen3-VL-235B-A22B-Instruct0.300 USD1.50 USD129,024 older than 30 days
Qwen3 VL 235B A22B Thinking Qwen3-VL-235B-A22B-Thinking0.980 USD3.95 USD131,072 older than 30 days
Qwen3.5 122B-A10B Qwen3.5-122B-A10B0.400 USD3.20 USD262,144 older than 30 days
Qwen3.5 27B Qwen3.5-27B0.300 USD2.40 USD262,144 older than 30 days
Qwen3.5 35B-A3B Qwen3.5-35B-A3B0.250 USD2.00 USD262,144 older than 30 days
Qwen3.5 397B-A17B Qwen3.5-397B-A17B0.600 USD3.60 USD262,144 older than 30 days

Sources of this page