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

<Info>
OpenZoo is an OpenAI-compatible provider with no signup: any API key value is
accepted (for example `sk-openzoo`), and usage is paid per request — by card,
or automatically via the x402 protocol from a local burner wallet.
</Info>

<Tip>
Learn more at [openzoo.fun](https://openzoo.fun)
</Tip>

## Installation

OpenZoo runs locally and provides an OpenAI-compatible API:

```bash
npx openzoo
```

This starts the gateway at `http://localhost:8402/v1`. A hosted endpoint is
also available at `https://api.openzoo.fun/v1`.

## Configuration

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

models:
- name: GLM 5.3 Flash
provider: openai
model: z-ai/glm-5.3-flash
apiBase: http://localhost:8402/v1
apiKey: sk-openzoo
```
</Tab>
<Tab title="JSON (Deprecated)">
```json title="config.json"
{
"models": [
{
"title": "GLM 5.3 Flash",
"provider": "openai",
"model": "z-ai/glm-5.3-flash",
"apiBase": "http://localhost:8402/v1",
"apiKey": "sk-openzoo"
}
]
}
```
</Tab>
</Tabs>

To use the hosted endpoint instead, set `apiBase: https://api.openzoo.fun/v1`.

## Available Models

List every available model id with live pricing (free, no payment):

```bash
curl http://localhost:8402/v1/models
```

Model ids are provider-prefixed, for example `z-ai/glm-5.3-flash` or
`qwen/qwen3.7-flash`. SSE streaming is supported for all models.

## Troubleshooting

If you see connection errors, make sure OpenZoo is running:

```bash
curl http://localhost:8402/v1/models
npx openzoo
```

If a request returns HTTP 402, the local wallet is unfunded — the error body
includes directions (`npx openzoo address` / `npx openzoo balance`).
1 change: 1 addition & 0 deletions docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@
"customize/model-providers/more/moonshot",
"customize/model-providers/more/nous",
"customize/model-providers/more/nvidia",
"customize/model-providers/more/openzoo",
"customize/model-providers/more/tensorix",
"customize/model-providers/more/together",
"customize/model-providers/more/xAI",
Expand Down
Loading