> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nemu.cc/llms.txt
> Use this file to discover all available pages before exploring further.

# Console

> Where providers, models, keys and limits are configured

The console at [app.nemu.cc](https://app.nemu.cc) is where you set up
everything the gateway does. Nothing here runs a model itself. It decides what
the gateway is allowed to do when your code calls it.

## The shape of it

You bring a **provider**, which is an account you already have somewhere and
the key for it. Inside that provider you enable **models**, and each enabled
model gets a gateway name that becomes the only name your code needs to know.
An **API key** is what your code sends to reach those models.

Around that sit the things that shape a request on its way through.
**Mappings** rewrite a model name. **Prompts** prepend a system message.
**Quotas** cap what a model may consume. **Workflows** route a request through
logic before it reaches a model at all.

Everything above belongs to a **workspace**. Your plan, your credits and your
account settings do not.

## Pages

<CardGroup cols={2}>
  <Card title="Providers" href="/console/providers">
    Connect the accounts your models come from
  </Card>

  <Card title="Models" href="/console/models">
    Enable models and give them gateway names
  </Card>

  <Card title="API keys" href="/console/keys">
    The credential your applications send
  </Card>

  <Card title="Mappings" href="/console/mappings">
    Rename a model without touching your code
  </Card>

  <Card title="Prompts" href="/console/prompts">
    Inject a system prompt into every request
  </Card>

  <Card title="Quotas" href="/console/quotas">
    Per model limits and the workspace budget
  </Card>

  <Card title="Workflows" href="/workflows">
    Route a request through logic first
  </Card>

  <Card title="Indexes" href="/chat/indexes">
    Crawl a site so the assistant can search it
  </Card>

  <Card title="Metrics and usage" href="/console/metrics">
    What was called, what it cost, what failed
  </Card>

  <Card title="Workspaces" href="/console/workspaces">
    How work is separated and shared
  </Card>

  <Card title="Applications" href="/console/applications">
    OAuth clients for the management API
  </Card>

  <Card title="Account" href="/console/account">
    Plan, security, sessions and deletion
  </Card>
</CardGroup>

## Doing it without the console

Everything on these pages is also in the management API, so a setup can be
scripted rather than clicked. See the [API reference](/api/overview) and
[OAuth 2.0](/oauth).
