Avian
Avian 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.
Chat Modelβ
Avian provides an OpenAI-compatible chat API interface.
~/.tabby/config.toml
[model.chat.http]
kind = "openai/chat"
model_name = "deepseek/deepseek-v3.2"
api_endpoint = "https://api.avian.io/v1"
api_key = "your-api-key"
You can also configure multi-model support to switch between available models:
~/.tabby/config.toml
[model.chat.http]
kind = "openai/chat"
model_name = "deepseek/deepseek-v3.2"
supported_models = [
"deepseek/deepseek-v3.2",
"moonshotai/kimi-k2.5",
"z-ai/glm-5",
"minimax/minimax-m2.5"
]
api_endpoint = "https://api.avian.io/v1"
api_key = "your-api-key"
Completion Modelβ
Avian does not currently offer a dedicated completion (FIM) API endpoint.
Embeddings Modelβ
Avian does not currently offer embedding model APIs.
Available Modelsβ
| Model | Context Length | Max Output |
|---|---|---|
deepseek/deepseek-v3.2 | 164K | 65K |
moonshotai/kimi-k2.5 | 131K | 8K |
z-ai/glm-5 | 131K | 16K |
minimax/minimax-m2.5 | 1M | 1M |
For the latest model list and pricing, visit Avian.