Skip to content

Commit a4db79d

Browse files
committed
docs: add Manifest provider section
Add documentation for Manifest, an open-source LLM router, to the providers page. Includes setup instructions, self-hosted note, and config example. Depends on anomalyco/models.dev#1686 for provider registration.
1 parent becf57e commit a4db79d

1 file changed

Lines changed: 44 additions & 0 deletions

File tree

packages/web/src/content/docs/providers.mdx

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1642,6 +1642,50 @@ OpenCode Zen is a list of tested and verified models provided by the OpenCode te
16421642

16431643
---
16441644

1645+
### Manifest
1646+
1647+
[Manifest](https://manifest.build) is an open-source LLM router that cuts inference costs through smart routing across 16+ providers. You get full control over which model handles each request. Route by complexity tier, task-specificity (coding, web browsing, etc.) and custom tiers.
1648+
1649+
1. Head over to [manifest.build](https://manifest.build), create an account, and copy your API key (starts with `mnfst_`).
1650+
1651+
2. Run the `/connect` command and search for Manifest.
1652+
1653+
```txt
1654+
/connect
1655+
```
1656+
1657+
3. Enter the API key for the provider.
1658+
1659+
```txt
1660+
┌ API key
1661+
1662+
1663+
└ enter
1664+
```
1665+
1666+
4. Run the `/models` command and select `auto`.
1667+
1668+
```txt
1669+
/models
1670+
```
1671+
1672+
:::note[Self-hosted]
1673+
Manifest is open-source and can be self-hosted with Docker for fully private inference. Override the base URL in your config to point to your local instance:
1674+
1675+
```json title="opencode.json"
1676+
{
1677+
"$schema": "https://opencode.ai/config.json",
1678+
"provider": {
1679+
"manifest": {
1680+
"api": "http://localhost:2099/v1"
1681+
}
1682+
}
1683+
}
1684+
```
1685+
:::
1686+
1687+
---
1688+
16451689
### LLM Gateway
16461690

16471691
1. Head over to the [LLM Gateway dashboard](https://llmgateway.io/dashboard), click **Create API Key**, and copy the key.

0 commit comments

Comments
 (0)