pi-llama-cpp

Pi extension for llama.cpp integration. Supports router, single and legacy models. Supports multiple servers.

Packages

Package details

extension

Install pi-llama-cpp from npm and Pi will load the resources declared by the package manifest.

$ pi install npm:pi-llama-cpp
Package
pi-llama-cpp
Version
0.13.0
Published
Sep 15, 2026
Downloads
7,481/mo · 1,337/wk
Author
gsanhueza
License
MIT
Types
extension
Size
322.8 KB
Dependencies
0 dependencies · 3 peers
Pi manifest JSON
{
  "extensions": [
    "./src/index.ts"
  ]
}

Security note

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

README

pi-llama-cpp

A Pi Coding Agent extension that integrates with running llama.cpp servers to provide live model browsing, loading, and switching directly from Pi.

Features

  • Auto-detect models — discovers all models available on your running llama.cpp server
  • Live status indicators — see which models are loaded, loading, failed, sleeping, or unloaded with color-coded icons
  • Load / unload / switch — manage models directly from the Pi command palette
  • Multi-model router support — works with both single-model and multi-model llama.cpp server configurations
  • Image capabilities detection — detects multimodal models automatically
  • Flexible URL resolution — configures the server via llamaSettings (project/global), environment variable, or legacy llamaServerUrl
  • Auth support — allows to login into a llama.cpp server that was secured with an API key
  • Multiple server support — connect to multiple llama.cpp servers simultaneously via llamaSettings.servers or semicolon-separated URLs
  • Thinking budget support — configurable token budgets for model reasoning/thinking, mapped to Pi's thinking levels
  • Real-time progress tracking — live loading progress via SSE (falls back to polling)

Status Indicators

Icon Status Description
🟢 Loaded Model is active and ready to use
🟡 Loading Model is currently being loaded
🔴 Failed Model failed to load
🔵 Sleeping Model is available, but inactive
Unloaded Model is not loaded on the server
Unauthorized Model can't be used (API key required)

Note: The Sleeping status only shows when you start your server with llama-server --sleep-idle-seconds <n> .... This is a llama.cpp server flag that tells the server to put idle models to sleep after n seconds. The model awakens automatically when you send a message.

Note: You can run your server with API authentication with llama-server --api-key <your key> ....

Server Health Indicators

When browsing servers via /models servers, each server URL is prefixed with a health indicator:

Icon Status Description
🟢 Healthy Server responded successfully to health check
🟡 Timeout Server health check timed out
🔴 Unreachable Server could not be reached

Installation

This package is a Pi extension. Install it with

pi install npm:pi-llama-cpp

or

pi install https://github.com/gsanhueza/pi-llama-cpp

Configuration

The extension resolves the llama.cpp server configuration using the following priority order:

  1. Environment variableLLAMA_SERVER_URL
  2. llamaSettings — Main configuration format in .pi/settings.json (project) or ~/.pi/agent/settings.json (global)
  3. llamaServerUrl — Legacy format in .pi/settings.json (project) or ~/.pi/agent/settings.json (global)
  4. Defaulthttp://127.0.0.1:8080

Server configuration

The recommended way to configure the extension is using the llamaSettings key. This provides a structured way to define multiple servers with custom names and IDs, plus additional behavior options.

Add this to your .pi/settings.json (project) or ~/.pi/agent/settings.json (global):

Minimal configuration

{
  "llamaSettings": {
    "servers": [{ "url": "http://127.0.0.1:8080" }]
  }
}

Full configuration

{
  "llamaSettings": {
    "servers": [
      {
        "url": "http://127.0.0.1:8080",
        "id": "local",
        "name": "Local Server",
        "overrides": {}
      },
      {
        "url": "http://10.0.0.5:8080",
        "name": "Remote Server"
      }
    ],
    "reactToModelSelect": true,
    "autoloadOnMessage": false,
    "sortBy": "asc",
    "pollingTimeout": 60000,
    "serverTimeout": 1000
  }
}

With this config, the servers will appear in Pi as Llama.cpp (Local Server) and Llama.cpp (Remote Server).

Server Options

Option Type Required Description
url string Yes The URL of the llama.cpp server
id string No Custom provider ID (used for API key auth). Defaults to llama-server=<url>
name string No Display name for the server in the UI (shown as Llama.cpp (<name>))

Note: If you set a custom id, you can use it in ~/.pi/agent/auth.json. The extension will also fall back to the URL-based ID if no key is found for the custom id.

Settings Options

Option Type Default Description
reactToModelSelect boolean true Load the model when you switch via Pi's model picker.
autoloadOnMessage boolean false Automatically load an unloaded model before sending a message
sortBy string "asc" Sort order for models (see below)
pollingTimeout number 60000 Max time (ms) to wait for model loading before giving up
serverTimeout number 1000 Timeout (ms) for server health checks and SSE probes

Note: serverTimeout controls individual HTTP request timeouts (health checks, SSE probe). pollingTimeout controls the total wait time for a model to finish loading. Increase serverTimeout for slow/high-latency servers, and pollingTimeout for large models or slow hardware.

In-session settings menu

Run /models settings to edit the scalar settings above without hand-editing JSON. Changes are written to the project .pi/settings.json if it exists, otherwise to global ~/.pi/agent/settings.json. Boolean and sort changes apply immediately; timeout changes apply on the next model load. The servers list is edited with /models servers (see below), and per-server model overrides with /models overrides (see Model Overrides).

Server list editor

Run /models servers to add, edit or remove entries of llamaSettings.servers without hand-editing JSON. Each server URL is prefixed with a health indicator (🟢 healthy, 🟡 timeout, 🔴 unreachable) that reflects the result of a health check against the server. Each change is written immediately to the project .pi/settings.json if it exists, otherwise to global ~/.pi/agent/settings.json.

Changes take effect immediately after closing the editor: new servers register their providers, removed ones leave pi's registry right away, and edited ones are re-registered with the fresh config — no restart or /models needed.

Limitation: a model already loading in the background on a removed or edited server finishes loading, but its progress notifications stop; re-select it from the (new) provider afterwards.

Environment variable

For a quick setup, you can use the LLAMA_SERVER_URL environment variable instead of the JSON config:

export LLAMA_SERVER_URL="http://127.0.0.1:8080"

This is equivalent to defining a single server in llamaSettings.servers with just a URL.

Legacy configuration

For a simpler setup, you can use the legacy llamaServerUrl key:

{
  "llamaServerUrl": "http://127.0.0.1:8080"
}

This is equivalent to defining a single server in llamaSettings.servers with just a URL.

Multiple servers

To connect to multiple llama.cpp servers simultaneously:

Using llamaSettings (recommended):

{
  "llamaSettings": {
    "servers": [
      { "url": "http://127.0.0.1:8080" },
      { "url": "http://127.0.0.1:8081" },
      { "url": "http://10.0.0.5:8080" }
    ]
  }
}

Using the environment variable:

LLAMA_SERVER_URL="http://127.0.0.1:8080;http://127.0.0.1:8081;http://10.0.0.5:8080"

Each server gets its own provider (e.g., Llama.cpp (http://127.0.0.1:8080)) and its own set of models. The /models command lists all models from all servers, labeled with their server URL.

API Key

If your llama.cpp server requires authentication, use /login in Pi, select the "API key" option, and choose the provider from the list that correlates with the server needing the API key.

Alternatively, configure the API key in ~/.pi/agent/auth.json: Use the provider ID llama-server=<url> (or your custom id if you set one in llamaSettings.servers):

{
  "llama-server=http://127.0.0.1:8080": {
    "type": "api_key",
    "key": "<key-for-server-1>"
  },
  "llama-server=https://some-url-for-llama-cpp": {
    "type": "api_key",
    "key": "<key-for-server-2>"
  }
}

Usage

Prerequisites

Make sure your llama.cpp server is running with the appropriate flags.

  • For multi-model support (model router), start the server with:
llama-server --models-preset path/to/presets.ini ...
  • For single-model mode, start the server with:
llama-server --model path/to/model.gguf ...
  • For legacy-model mode (e.g., ik_llama.cpp), the extension auto-detects and handles it transparently.

Note: This extension is focused on llama.cpp, not on ik_llama.cpp. Nonetheless, since I found a way to make it work with this extension, I added the option.

Note: The ik_llama.cpp fork is not legacy at all, but it uses an old way of describing models compared to llama.cpp.

The extension determines the context size as follows:

  • A per-model contextSize override (see Model Overrides) takes precedence over everything below
  • Router mode
    • When loaded, reads meta.n_ctx from the /v1/models endpoint
    • When not loaded, reads --ctx-size and/or --fit-ctx from the server arguments (which can also originate from the presets.ini file the llama.cpp server uses to load its models).
  • Single mode — reads meta.n_ctx from the /v1/models endpoint
  • Legacy mode — reads max_model_len from /v1/models, falling back to n_ctx from /props
  • Falls back to 128000 if not available

Commands

Command Description
/models Browse your models with live status. Select a model to load, switch, or unload it.
/models info Show detailed information for all available models at once.
/models unload Unload all loaded models at once.
/models settings Open a menu to edit the scalar llamaSettings fields.
/models servers Add, edit or remove llama.cpp server URLs via a TUI editor.
/models overrides Edit per-server model overrides (llamaSettings.servers[].overrides) via a TUI editor.

Note: When a llama.cpp server is slow to respond, it will be skipped at startup with a warning. Run /models to retry without timeout and see all models.

Note: When a llama.cpp server is unreachable, /models displays an error notification with the configured server URL, but healthy servers continue to show their models.

Note: The /models unload command only makes sense in router mode.

Model sorting

The order of models in the /models menu is controlled by the sortBy setting. Servers maintain their order from llamaSettings; sorting applies within each server:

Value Description
"asc" Sort by model ID ascending (default)
"desc" Sort by model ID descending
"asc-name" Sort by model name ascending (ties broken by ID)
"desc-name" Sort by model name descending (ties broken by ID)
"api" No sorting — models appear in the order returned by each server's /v1/models endpoint, servers in llamaSettings order

Model Actions

When browsing models via the /models command, you can:

  • Load & switch — Load an unloaded model and switch to it
  • Switch model — Switch to a model that is already loaded
  • Unload — Unload a loaded model to free memory
  • Retry — Retry loading a failed model
  • Info — View model details (ID, capabilities, context size)
  • Cancel — Cancel the current operation

Note: In single-model and legacy-model mode, Unload is not available, since there is only one model on the server.

Thinking Budgets

The extension supports configurable thinking budgets that control how many tokens the model allocates to its reasoning/thinking process. This is tied to Pi's thinking level selector (off, minimal, low, medium, high, xhigh, max).

Level Tokens Description
off 0 Thinking disabled
minimal 1,024 Short reasoning steps
low 2,048 Light reasoning
medium 8,192 Balanced reasoning (default)
high 16,384 Extended reasoning
xhigh 32,768 Deep reasoning
max -1 Unlimited reasoning

User-defined budgets can override the defaults by adding a thinkingBudgets object to ~/.pi/agent/settings.json (global) or .pi/settings.json (per-project):

{
  "thinkingBudgets": {
    "minimal": 256,
    "low": 1024,
    "medium": 2048,
    "high": 4096,
    "xhigh": 8192
  }
}

Only minimal, low, medium, high and xhigh are configurable — off (0) and max (-1, unlimited) are fixed. The extension automatically injects the appropriate thinking_budget_tokens into each request payload based on the selected level.

Model Overrides

A locally-run llama.cpp server is free, but you can simulate costs for budgeting, experimentation, or comparison purposes — and fine-tune what the extension reports about each model.

This extension supports per-model, per-server configuration via the overrides key inside each server entry of llamaSettings.servers. Each entry can override the model's cost, capabilities, reasoning, contextSize, maxTokens, and compat, regardless of what the server reports.

Add overrides to your server configuration:

{
  "llamaSettings": {
    "servers": [
      {
        "url": "http://127.0.0.1:8080",
        "overrides": {
          "qwen-3.8-27b": {
            "cost": { "input": 0.42, "output": 3.0, "cacheRead": 0.085 }
          },
          "glm-5.3-flash": {
            "cost": { "input": 0.15, "output": 0.5, "cacheRead": 0.03 },
            "capabilities": ["text"],
            "reasoning": false,
            "contextSize": 32768,
            "maxTokens": 4096
          }
        }
      }
    ]
  }
}

Every field of an override is optional — absent fields fall back to what the extension detects (capabilities) or to its defaults (reasoning: true, zeroed cost).

Override editor

Run /models overrides to edit a server's override entries without hand-editing JSON. It opens a settings menu (same UX as /models settings).

Each change is written immediately to the project .pi/settings.json if it exists, otherwise to global ~/.pi/agent/settings.json.

Overrides take effect on the next provider request after closing the editor — no /reload needed.

Cost Fields

Inside an override, the cost object accepts:

Field Type Description
input number Cost per million input tokens
output number Cost per million output tokens
cacheRead number Cost per million cache read tokens
cacheWrite number Cost per million cache write tokens

All four fields are optional — unspecified fields default to zero. In the override editor, entering 0 (or leaving a field empty) removes the field from the settings — and the cost object itself once no fields remain — with the same effect as leaving it unset.

Other Fields

Field Type Description
capabilities array of strings Pi capabilities for the model ("text", "image"). Fully replaces the detected capabilities.
reasoning boolean Whether the model is a reasoning model. Defaults to true when absent.
contextSize number Override the model's context size in tokens. Falls back to autodetection when absent or 0.
maxTokens number Override max generation tokens. Falls back to context size when absent or 0.
compat object OpenAI-compatible provider compatibility settings (see below).

Compatibility (compat)

The compat field accepts any subset of OpenAI-compatible provider compatibility settings used by the openai-completions API. These control how the extension talks to your server — for example, disabling developer role support, choosing the thinking format, enabling Anthropic-style cache control, or setting thinking token budgets.

Example:

{
  "llamaSettings": {
    "servers": [
      {
        "url": "http://127.0.0.1:8080",
        "overrides": {
          "llama-3": {
            "compat": {
              "supportsDeveloperRole": false,
              "thinkingFormat": "openai",
              "thinkingTokenBudgetField": "thinking_budget_tokens"
            }
          }
        }
      }
    ]
  }
}

Prefix matching

Override keys are treated as prefix filters — a model ID matches if it starts with the key. When multiple patterns match, the longest (most specific) match wins. This lets you define broad patterns at the top of your overrides and override them with more specific ones below.

Example:

{
  "llama": { "cost": { "input": 0.01, "output": 0.02 } },
  "llama-3": { "reasoning": false },
  "llama-3-8b": { "cost": { "input": 0.2, "output": 0.6 } }
}
Model ID Matching keys Winner (longest) Effective override
llama-3-8b llama, llama-3, llama-3-8b llama-3-8b { cost: { input: 0.2, output: 0.6 } }
llama-3-70b llama, llama-3 llama-3 { reasoning: false }
mistral-7b llama (no) none defaults (zero cost, detected caps, reasoning: true)

Note: Exact model IDs still work — they are simply the longest possible prefix for themselves. Empty keys are silently ignored.

Model matching uses this prefix system — the model ID must start with the override key for a match.

Note: Overrides are resolved through the same settings merge logic (project overrides global), so they follow the same precedence chain as other server settings. If the same URL appears multiple times with different overrides, only the first one's overrides will be used (consistent with existing dedup behavior).

Model Selection Event

When you switch models via Pi's model picker (instead of using the /models command), the extension listens for the model_select event, which also loads the requested model before the conversation begins.

This keeps the server in sync with the active model in Pi, regardless of how the switch was initiated — you don't need to manually load models before using them.

You can disable this behavior by setting reactToModelSelect to false in llamaSettings.

Note: If you switch sessions while a model load is in-flight, you'll see a warning, but the load continues in the background. Use /models in the new session to verify the model status.

Loading Models

When you trigger a load, switch, or retry action, the extension uses SSE (Server-Sent Events) to receive real-time progress updates from the server. If SSE is not available, it falls back to polling.

If loading takes longer than 60 seconds (configurable via pollingTimeout), the operation times out with an error.

Note: The timeout only applies to the progress detection. The model might still be loading in the background.

Model Configuration

Each model exposed to Pi includes the following defaults:

  • contextWindow — detected from llama-server (see how the extension determines the context size above); can be overridden per-model via llamaSettings.servers[].overrides (see Model Overrides)
  • maxTokens — dynamically set to the model's context window (detected from llama-server); can be overridden per-model via llamaSettings.servers[].overrides (see Model Overrides)
  • reasoningtrue by default (llama.cpp's /v1/models endpoint does not expose it); can be overridden per-model via llamaSettings.servers[].overrides (see Model Overrides)
  • cost — all zero by default; can be customized per-model via llamaSettings.servers[].overrides (see Model Overrides)
  • compat — OpenAI-compatible provider compatibility settings; can be set per-model via llamaSettings.servers[].overrides (see Model Overrides)

Dependencies

Peer dependency Purpose
@earendil-works/pi-ai Pi AI SDK
@earendil-works/pi-coding-agent Pi Coding Agent SDK
@earendil-works/pi-tui Pi TUI SDK