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
56 changes: 56 additions & 0 deletions docs/customize/model-providers/more/minirouter.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
---
title: "How to Configure minirouter with Continue"
sidebarTitle: "minirouter"
---

<Info>
Get a prepaid, accountless API key at [minirouter](https://minirouter.sh/key).
</Info>

minirouter is an OpenAI-compatible gateway with one key for the Vercel AI
Gateway catalog.

## Configuration

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

models:
- name: Llama 3.3 70B (minirouter)
provider: openai
model: meta/llama-3.3-70b
apiBase: https://api.minirouter.sh/v1
apiKey: <MINIROUTER_API_KEY>
roles:
- chat
- edit
- apply
```
</Tab>
<Tab title="JSON (Deprecated)">
```json title="config.json"
{
"models": [
{
"title": "Llama 3.3 70B (minirouter)",
"provider": "openai",
"model": "meta/llama-3.3-70b",
"apiBase": "https://api.minirouter.sh/v1",
"apiKey": "<MINIROUTER_API_KEY>",
"roles": ["chat", "edit", "apply"]
}
]
}
```
</Tab>
</Tabs>

Model IDs use `<lab>/<model>`. See the [full model list and
prices](https://minirouter.sh/docs/models), or send `GET https://api.minirouter.sh/v1/models`.

Streaming, tool calling, and `max_completion_tokens` are supported on every
model that advertises them.
1 change: 1 addition & 0 deletions docs/customize/model-providers/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Beyond the top-level providers, Continue supports many other options:
| [Together AI](/customize/model-providers/more/together) | Platform for running a variety of open models |
| [DeepInfra](/customize/model-providers/more/deepinfra) | Hosting for various open source models |
| [OpenRouter](/customize/model-providers/top-level/openrouter) | Gateway to multiple model providers |
| [minirouter](/customize/model-providers/more/minirouter) | OpenAI-compatible gateway with prepaid, accountless keys |
| [ClawRouter](/customize/model-providers/more/clawrouter) | Open-source LLM router with automatic cost-optimized model selection |
| [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 |
Expand Down
1 change: 1 addition & 0 deletions docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@
"customize/model-providers/more/llamacpp",
"customize/model-providers/more/llamastack",
"customize/model-providers/more/mimo",
"customize/model-providers/more/minirouter",
"customize/model-providers/more/mistral",
"customize/model-providers/more/moonshot",
"customize/model-providers/more/nous",
Expand Down
Loading