From 8c0964e2c73e8a2ab5c825c33adcc7d660f45ea0 Mon Sep 17 00:00:00 2001 From: Lee Penkman Date: Sun, 28 Jun 2026 21:35:27 +1200 Subject: [PATCH] docs: add app.nz model provider page Add docs/customize/model-providers/more/appnz.mdx covering the app.nz OpenAI-compatible gateway (provider: openai, apiBase https://app.nz/v1, model app/auto plus auto-* routing variants). Register the page in the docs.json "More Providers" sidebar and the providers overview table. Co-Authored-By: Claude Opus 4.8 (1M context) --- docs/customize/model-providers/more/appnz.mdx | 119 ++++++++++++++++++ docs/customize/model-providers/overview.mdx | 1 + docs/docs.json | 1 + 3 files changed, 121 insertions(+) create mode 100644 docs/customize/model-providers/more/appnz.mdx diff --git a/docs/customize/model-providers/more/appnz.mdx b/docs/customize/model-providers/more/appnz.mdx new file mode 100644 index 00000000000..84e6e7a7284 --- /dev/null +++ b/docs/customize/model-providers/more/appnz.mdx @@ -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" +--- + + + app.nz is a hosted, OpenAI-compatible LLM gateway with an automatic router that selects the best model for each request across multiple providers. + + + + Get an API key from the [app.nz dashboard](https://app.nz/) and read the [docs](https://app.nz/docs). + + +## 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. + + + + ```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: + ``` + + + ```json title="config.json" + { + "models": [ + { + "title": "app.nz Auto", + "provider": "openai", + "model": "app/auto", + "apiBase": "https://app.nz/v1", + "apiKey": "" + } + ] + } + ``` + + + +## 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: + + + + ```yaml title="config.yaml" + models: + - name: app.nz Code + provider: openai + model: app/auto-code + apiBase: https://app.nz/v1 + apiKey: + roles: + - chat + - edit + - apply + + - name: app.nz Fast + provider: openai + model: app/auto-fast + apiBase: https://app.nz/v1 + apiKey: + roles: + - autocomplete + ``` + + + ```json title="config.json" + { + "models": [ + { + "title": "app.nz Code", + "provider": "openai", + "model": "app/auto-code", + "apiBase": "https://app.nz/v1", + "apiKey": "", + "roles": ["chat", "edit", "apply"] + } + ], + "tabAutocompleteModel": { + "title": "app.nz Fast", + "provider": "openai", + "model": "app/auto-fast", + "apiBase": "https://app.nz/v1", + "apiKey": "" + } + } + ``` + + + + + app.nz also exposes an Anthropic-compatible endpoint at `https://app.nz/v1/messages` for clients that speak the Anthropic Messages API. + diff --git a/docs/customize/model-providers/overview.mdx b/docs/customize/model-providers/overview.mdx index 7ba030dcb4d..88e844637ce 100644 --- a/docs/customize/model-providers/overview.mdx +++ b/docs/customize/model-providers/overview.mdx @@ -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 | diff --git a/docs/docs.json b/docs/docs.json index b7a1d83f13a..a82b32197bb 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -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",