Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
119 changes: 119 additions & 0 deletions docs/customize/model-providers/more/appnz.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
---
title: "app.nz"
description: "Configure app.nz with Continue to access a hosted OpenAI-compatible LLM gateway with automatic model routing across multiple providers, including API setup instructions"
---

<Info>
app.nz is a hosted, OpenAI-compatible LLM gateway with an automatic router that selects the best model for each request across multiple providers.
</Info>

<Tip>
Get an API key from the [app.nz dashboard](https://app.nz/) and read the [docs](https://app.nz/docs).
</Tip>

## Configuration

app.nz exposes an OpenAI-compatible API at `https://app.nz/v1`, so it is configured with the `openai` provider and a custom `apiBase`. Use the `app/auto` model to let the router pick the best model automatically.

<Tabs>
<Tab title="YAML">
```yaml title="config.yaml"
name: My Config
version: 0.0.1
schema: v1

models:
- name: app.nz Auto
provider: openai
model: app/auto
apiBase: https://app.nz/v1
apiKey: <APP_NZ_API_KEY>
```
</Tab>
<Tab title="JSON (Deprecated)">
```json title="config.json"
{
"models": [
{
"title": "app.nz Auto",
"provider": "openai",
"model": "app/auto",
"apiBase": "https://app.nz/v1",
"apiKey": "<APP_NZ_API_KEY>"
}
]
}
```
</Tab>
</Tabs>

## Available Models

`app/auto` routes each request to the best available model. You can also target a routing variant tuned for a specific workload, or address any upstream model directly with `provider/model`.

| Model | Best For |
|-------|----------|
| `app/auto` | General use, balanced routing (recommended) |
| `app/auto-code` | Coding and editing tasks |
| `app/auto-reasoning` | Complex reasoning and planning |
| `app/auto-fast` | Low-latency responses |
| `app/auto-cheap` | Maximum cost savings |
| `app/auto-vision` | Image and multimodal input |

To use a specific upstream model instead of the router, pass it as `provider/model` (for example `anthropic/claude-sonnet-4` or `openai/gpt-4o`).

## Using Multiple Roles

You can configure app.nz routing variants for different Continue roles:

<Tabs>
<Tab title="YAML">
```yaml title="config.yaml"
models:
- name: app.nz Code
provider: openai
model: app/auto-code
apiBase: https://app.nz/v1
apiKey: <APP_NZ_API_KEY>
roles:
- chat
- edit
- apply

- name: app.nz Fast
provider: openai
model: app/auto-fast
apiBase: https://app.nz/v1
apiKey: <APP_NZ_API_KEY>
roles:
- autocomplete
```
</Tab>
<Tab title="JSON (Deprecated)">
```json title="config.json"
{
"models": [
{
"title": "app.nz Code",
"provider": "openai",
"model": "app/auto-code",
"apiBase": "https://app.nz/v1",
"apiKey": "<APP_NZ_API_KEY>",
"roles": ["chat", "edit", "apply"]
}
],
"tabAutocompleteModel": {
"title": "app.nz Fast",
"provider": "openai",
"model": "app/auto-fast",
"apiBase": "https://app.nz/v1",
"apiKey": "<APP_NZ_API_KEY>"
}
}
```
</Tab>
</Tabs>

<Info>
app.nz also exposes an Anthropic-compatible endpoint at `https://app.nz/v1/messages` for clients that speak the Anthropic Messages API.
</Info>
1 change: 1 addition & 0 deletions docs/customize/model-providers/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Beyond the top-level providers, Continue supports many other options:
| [DeepInfra](/customize/model-providers/more/deepinfra) | Hosting for various open source models |
| [OpenRouter](/customize/model-providers/top-level/openrouter) | Gateway to multiple model providers |
| [ClawRouter](/customize/model-providers/more/clawrouter) | Open-source LLM router with automatic cost-optimized model selection |
| [app.nz](/customize/model-providers/more/appnz) | Hosted OpenAI-compatible gateway with automatic model routing |
| [Tetrate Agent Router Service](/customize/model-providers/top-level/tetrate_agent_router_service) | Gateway with intelligent routing across multiple model providers |
| [Cohere](/customize/model-providers/more/cohere) | Models specialized for semantic search and text generation |
| [NVIDIA](/customize/model-providers/more/nvidia) | GPU-accelerated model hosting |
Expand Down
1 change: 1 addition & 0 deletions docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@
{
"group": "More Providers",
"pages": [
"customize/model-providers/more/appnz",
"customize/model-providers/more/asksage",
"customize/model-providers/more/clawrouter",
"customize/model-providers/more/deepseek",
Expand Down
Loading