> For the complete documentation index, see [llms.txt](https://docs.duplocloud.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.duplocloud.com/docs/armor/agents/llm-models.md).

# LLM Models

The **LLMs** section governs which models are available to agents, and which model a Workspace, Project, or the platform as a whole uses by default. It's reached from **AI Admin → LLMs**, and has three tabs: **Agent SDKs**, **LLMs**, and **LLM Mappings**.

![LLMs tab — the model registry](/files/KRLSm5xCAxu0TG4Zt8pT)

## Agent SDKs

An **Agent SDK** is a connection to a deployed agent runtime — the same entity described in [Adding a Custom Agent](/docs/armor/agents.md#adding-a-custom-agent): a Name, Description, Endpoint, and Path. It's listed here because every model in the registry is registered under one.

![Agent SDKs tab](/files/QHQXCpJCuSxpU25pdamh)

Click **+ Add** to register another one.

![Add Agent SDK form](/files/3JrmBuyzvcbUBzZKYvsJ)

![Add Agent SDK form filled in](/files/09jiKUkhuj4ltBOaK6HZ)

![Agent SDK added](/files/YYEp9Swat2aQYiItVWju)

## LLMs

The **LLMs** tab is the model registry itself — every model an agent is allowed to use, paired with the Agent SDK(s) that can run it.

Click **+ Add** and fill in:

* **Agent SDKs\*** — which SDK(s) this model can run under
* **Model ID\*** — the underlying model identifier (e.g. `claude-sonnet-5`)
* **Display Name\*** — a human-readable name shown in ticket creation and elsewhere (e.g. `Sonnet 5`)
* **Description** — optional
* **Enabled** — toggle it off to keep a model registered but unavailable for selection

![Add Model form](/files/T4ZSyaZoyQaFgk4AYk9Y)

![Add Model form filled in](/files/XqY50yU4un9QRIgpcgZs)

![New model in the registry](/files/IkiEO90PyU16IMDT4ytc)

{% hint style="info" %}
This registry doesn't have a "Provider" field — it doesn't matter here whether a model runs on AWS Bedrock, GCP Vertex AI, Azure AI Foundry, or directly against the Anthropic API. That's determined by environment variables on the Agent SDK's own deployment, not by anything you configure in this UI.
{% endhint %}

## LLM Mappings

A **Mapping** controls which registered models are actually usable — and which one is the default — for a given scope. This is what makes the registry an *allow-list*: if no mapping covers a workspace, no models are available to it at all.

![LLM Mappings tab](/files/IIfpWlLUak5gsey027rK)

Click **+ Add** and fill in:

* **Name\*** and **Description** — a label for this mapping
* **Models\*** — the model + SDK pairs this mapping allows
* **Scope\*** — **System**, **Workspace**, or **Project**
* **Default model** — required for System scope; optional for Workspace/Project (falls back to the next broader scope's default if unset)
* **Target Workspace(s)\*** / **Target Project(s)\*** — shown only for Workspace/Project scope; select one or more

![Add Model Mapping form](/files/6O036IMPS3olp0Uzx4f6)

![Add Model Mapping form filled in](/files/1nD8TlP5lIEILRMwVRyD)

![New mapping added](/files/9OoPAlUUc5YteCXWRPiO)

{% hint style="info" %}
Resolution order is **Project → Workspace → System** — the most specific mapping that covers a given ticket wins. A fresh install seeds one **System**-scope mapping ("default models") automatically, so every workspace has a working default even before you add your own mappings.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.duplocloud.com/docs/armor/agents/llm-models.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
