Skip to content

Commit e8608d6

Browse files
authored
feat: add Avian as a model provider (#4448)
1 parent 5731104 commit e8608d6

1 file changed

Lines changed: 50 additions & 0 deletions

File tree

  • website/docs/references/models-http-api
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Avian
2+
3+
[Avian](https://avian.io/) is an inference API provider offering access to frontier open-source models through an OpenAI-compatible endpoint. Available models include DeepSeek V3.2, Kimi K2.5, GLM-5, and MiniMax M2.5.
4+
5+
## Chat Model
6+
7+
Avian provides an OpenAI-compatible chat API interface.
8+
9+
```toml title="~/.tabby/config.toml"
10+
[model.chat.http]
11+
kind = "openai/chat"
12+
model_name = "deepseek/deepseek-v3.2"
13+
api_endpoint = "https://api.avian.io/v1"
14+
api_key = "your-api-key"
15+
```
16+
17+
You can also configure multi-model support to switch between available models:
18+
19+
```toml title="~/.tabby/config.toml"
20+
[model.chat.http]
21+
kind = "openai/chat"
22+
model_name = "deepseek/deepseek-v3.2"
23+
supported_models = [
24+
"deepseek/deepseek-v3.2",
25+
"moonshotai/kimi-k2.5",
26+
"z-ai/glm-5",
27+
"minimax/minimax-m2.5"
28+
]
29+
api_endpoint = "https://api.avian.io/v1"
30+
api_key = "your-api-key"
31+
```
32+
33+
## Completion Model
34+
35+
Avian does not currently offer a dedicated completion (FIM) API endpoint.
36+
37+
## Embeddings Model
38+
39+
Avian does not currently offer embedding model APIs.
40+
41+
## Available Models
42+
43+
| Model | Context Length | Max Output |
44+
|---|---|---|
45+
| `deepseek/deepseek-v3.2` | 164K | 65K |
46+
| `moonshotai/kimi-k2.5` | 131K | 8K |
47+
| `z-ai/glm-5` | 131K | 16K |
48+
| `minimax/minimax-m2.5` | 1M | 1M |
49+
50+
For the latest model list and pricing, visit [Avian](https://avian.io/).

0 commit comments

Comments
 (0)