Skip to main content

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​

ModelContext LengthMax Output
deepseek/deepseek-v3.2164K65K
moonshotai/kimi-k2.5131K8K
z-ai/glm-5131K16K
minimax/minimax-m2.51M1M

For the latest model list and pricing, visit Avian.