Available

nvidia/nemotron-3-super-120b-a12b:free

nvidia/nemotron-3-super-120b-a12b:free — free model from Kilo Code.

nvidia/nemotron-3-super-120b-a12b:free — Free API Specifications

Context 262K
Max Output 32K
Modality text
Rate Limit ~200 req/hr
Card Required Yes
OpenAI Compatible No

How to Configure nvidia/nemotron-3-super-120b-a12b:free for Free

Base URL https://api.kilo.ai/api/gateway
How to get an API key Get API Key →

One-Click Config for Claude Code, Cursor & More

Claude Code

# Claude Code works via OpenRouter's Anthropic-compatible API.
# Note: Only paid Anthropic Claude models are supported (e.g. claude-sonnet-4.6, claude-opus-4).
# Browse available Claude models at: https://openrouter.ai/models?q=anthropic

# Add to ~/.zshrc or ~/.bashrc
export OPENROUTER_API_KEY="<your-openrouter-api-key>"  # Get at https://openrouter.ai/settings/keys
export ANTHROPIC_BASE_URL="https://openrouter.ai/api"
export ANTHROPIC_AUTH_TOKEN="$OPENROUTER_API_KEY"
export ANTHROPIC_API_KEY=""  # Must be explicitly empty to avoid conflicts

# Optional: pin specific models for each role
# export ANTHROPIC_DEFAULT_SONNET_MODEL="anthropic/claude-sonnet-4.6"
# export ANTHROPIC_DEFAULT_HAIKU_MODEL="anthropic/claude-haiku-4.5"

# Then simply run: claude

Cursor

# Cursor → Settings (⚙️) → Models → Add Model
# Enter the model name exactly as shown, then fill in:
#   Override OpenAI Base URL: https://api.kilo.ai/api/gateway
#   OpenAI API Key: <your-api-key>   # Get at https://kilo.ai
# Click "Verify" to confirm the connection, then enable the model.
#
# Model name to add: nvidia/nemotron-3-super-120b-a12b:free

Codex

# Add to ~/.zshrc or ~/.bashrc
export OPENAI_BASE_URL="https://api.kilo.ai/api/gateway"
export OPENAI_API_KEY="<your-api-key>"  # Get at https://kilo.ai

# Then run:
codex --model "nvidia/nemotron-3-super-120b-a12b:free"

Gemini CLI

# ~/.gemini/settings.json
{
  "apiKey": "<your-api-key>",
  "model": "nvidia/nemotron-3-super-120b-a12b:free"
}
# Get API key at https://kilo.ai

OpenCode

// ~/.config/opencode/opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "provider": {
    "free-llm": {
      "npm": "@ai-sdk/openai-compatible",
      "name": "Free LLM",
      "options": {
        "baseURL": "https://api.kilo.ai/api/gateway",
        "apiKey": "<your-api-key>"
      },
      "models": {
        "nvidia/nemotron-3-super-120b-a12b:free": { "name": "nvidia/nemotron-3-super-120b-a12b:free" }
      }
    }
  }
}
// Get API key at https://kilo.ai

Hermes

# Step 1 — Edit config.yaml
# Windows: C:\Users\<you>\AppData\Local\hermes\config.yaml
# macOS/Linux: ~/.config/hermes/config.yaml

model:
  default: nvidia/nemotron-3-super-120b-a12b:free
  provider: custom
  base_url: ${CUSTOM_BASE_URL}
  api_key: ${CUSTOM_API_KEY}
  model_aliases:
    nvidia/nemotron-3-super-120b-a12b:free:
      model: "nvidia/nemotron-3-super-120b-a12b:free"
      provider: "custom"

# Step 2 — Edit .env (same directory as config.yaml)
# Windows: C:\Users\<you>\AppData\Local\hermes\.env
# macOS/Linux: ~/.config/hermes/.env

# ========================
# Custom API (OpenAI-compatible)
# ========================
CUSTOM_API_KEY=<your-api-key>        # Get at https://kilo.ai
CUSTOM_BASE_URL=https://api.kilo.ai/api/gateway

OpenClaw

// ~/.openclaw/openclaw.json  (JSON5 format)
{
  "agents": {
    "defaults": {
      "model": {
        "primary": "nvidia/nemotron-3-super-120b-a12b:free",
      },
    },
  },
  "models": {
    "providers": {
      // Option A — Built-in provider (OpenAI, Anthropic, Google…)
      // Just add apiKey; OpenClaw handles the baseUrl automatically
      // "openai": { "apiKey": "<your-api-key>" },

      // Option B — Custom OpenAI-compatible base URL (e.g. OpenRouter, NVIDIA)
      "free-llm": {
        "baseUrl": "https://api.kilo.ai/api/gateway",
        "apiKey": "<your-api-key>",  // Get at https://kilo.ai
        "api": "openai-completions", // openai-completions | anthropic-messages | …
        "models": [
          { "id": "nvidia/nemotron-3-super-120b-a12b:free", "name": "nvidia/nemotron-3-super-120b-a12b:free" },
        ],
      },
    },
  },
}
// Apply: openclaw gateway restart
// Verify: openclaw doctor --fix

Frequently Asked Questions about nvidia/nemotron-3-super-120b-a12b:free

Is nvidia/nemotron-3-super-120b-a12b:free free to use?

Yes. nvidia/nemotron-3-super-120b-a12b:free is available on a permanently free tier via Kilo Code. A credit card may be required to activate the free tier. The free tier includes a rate limit of ~200 req/hr.

What is nvidia/nemotron-3-super-120b-a12b:free best for?

nvidia/nemotron-3-super-120b-a12b:free is optimized for chat, reasoning tasks. It supports text modalities, with a context window of 262K tokens and a maximum output of 32K tokens. nvidia/nemotron-3-super-120b-a12b:free — free model from Kilo Code.

Is nvidia/nemotron-3-super-120b-a12b:free OpenAI-compatible?

nvidia/nemotron-3-super-120b-a12b:free does not use a standard OpenAI-compatible endpoint. Please refer to the Kilo Code documentation for SDK integration details.

How do I get an API key for nvidia/nemotron-3-super-120b-a12b:free?

Visit Kilo Code's API key page to register and generate a free API key. Once you have the key, use the configuration snippets above to set up Claude Code, Cursor, or your preferred AI coding tool.