Skip to content

Commit ba65930

Browse files
committed
docs: add Manifest provider section
1 parent becf57e commit ba65930

1 file changed

Lines changed: 55 additions & 0 deletions

File tree

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

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1642,6 +1642,61 @@ 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+
5. You can also configure Manifest through your opencode config.
1673+
1674+
**Cloud** (default, no base URL needed):
1675+
1676+
```json title="opencode.json"
1677+
{
1678+
"$schema": "https://opencode.ai/config.json",
1679+
"provider": {
1680+
"manifest": {}
1681+
}
1682+
}
1683+
```
1684+
1685+
**Self-hosted** (Manifest is open-source, can run locally with Docker for fully private inference):
1686+
1687+
```json title="opencode.json"
1688+
{
1689+
"$schema": "https://opencode.ai/config.json",
1690+
"provider": {
1691+
"manifest": {
1692+
"api": "http://localhost:2099/v1"
1693+
}
1694+
}
1695+
}
1696+
```
1697+
1698+
---
1699+
16451700
### LLM Gateway
16461701

16471702
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)