Skip to main content
GSD Pi supports a wide range of LLM providers. During first-run setup, the onboarding wizard walks you through provider configuration. At any point afterward, re-run the setup wizard to add or change providers.
This opens an interactive wizard that shows which credentials are configured and which are missing. Select a provider to enter or update its credentials.

Supported Providers

Set any of these as environment variables before starting GSD:
Or save them permanently with gsd config — keys are stored in ~/.gsd/agent/auth.json and apply to all projects automatically.

Listing Available Models

List all models GSD can find with your current credentials:
Filter by name or provider:

Overriding the Model for a Session

Pass --model when starting GSD to use a specific model for that session, ignoring whatever is set in preferences:

Switching Models In-Session

Change the active model without restarting the session:
This opens an interactive model picker showing all available models from your configured providers. The models.json file reloads each time you open the picker — no restart needed. You can also switch directly:

Claude Fable 5

Claude Fable 5 is an Opus-tier Anthropic model that ships across the Anthropic API, Anthropic on Vertex AI, Amazon Bedrock, and OpenRouter. Pi treats it the same as claude-opus-4-8: it advertises a 1M-token context window, 128K max output, image and text input, and adaptive thinking with the xhigh effort level enabled by default. Use it when you want maximum reasoning quality on planning, debugging, or long-context refactors and you’re willing to spend Opus-tier dollars (or, on a Claude Pro / Max / Team / Enterprise subscription, route through Claude Code for subscription-covered usage). Once your Anthropic credentials are configured, Claude Fable 5 appears in the model picker by ID:
Or pin it for a specific phase in PREFERENCES.md:
To use Claude Fable 5 through a non-direct provider, prefix the model ID with the provider:
When invoked through the Claude Code CLI, claude-fable-5 is also exposed on the heavy routing tier with subscription-covered pricing and the context-1m-2025-08-07 beta enabled automatically.

Using Claude Subscriptions via Claude Code

If you have a Claude Pro, Max, Team, or Enterprise subscription, authenticate through Anthropic’s official Claude Code CLI instead of an API key:
GSD detects your local Claude Code installation and routes through it automatically. This is the terms-of-service-compliant path for subscription users — GSD never handles your subscription credentials directly.

Adding Custom or Unlisted Models

Define custom models, local endpoints, and OpenAI-compatible proxies in ~/.gsd/agent/models.json:
The apiKey value is the name of the environment variable GSD should read (not the literal key). GSD resolves it automatically at runtime.

Per-Phase Model Routing

Assign different providers or models to different phases of the auto-mode pipeline in PREFERENCES.md:

Verifying Your Setup

After configuring a provider, verify everything is working:
1

Start GSD

2

Open the model picker

Your provider’s models should appear in the list.
3

Run a health check

GSD checks provider connectivity and reports any credential or configuration issues.
If a model doesn’t appear, check that:
  • The environment variable is exported in the current shell
  • ~/.gsd/agent/models.json is valid JSON (cat ~/.gsd/agent/models.json | python3 -m json.tool)
  • The local inference server is running (for Ollama, LM Studio, etc.)