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
6 changes: 3 additions & 3 deletions website/docs/references/models-http-api/avian.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Avian

[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.
[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 M3.

## Chat Model

Expand All @@ -24,7 +24,7 @@ supported_models = [
"deepseek/deepseek-v3.2",
"moonshotai/kimi-k2.5",
"z-ai/glm-5",
"minimax/minimax-m2.5"
"minimax/minimax-m3"
]
api_endpoint = "https://api.avian.io/v1"
api_key = "your-api-key"
Expand All @@ -45,6 +45,6 @@ Avian does not currently offer embedding model APIs.
| `deepseek/deepseek-v3.2` | 164K | 65K |
| `moonshotai/kimi-k2.5` | 131K | 8K |
| `z-ai/glm-5` | 131K | 16K |
| `minimax/minimax-m2.5` | 1M | 1M |
| `minimax/minimax-m3` | 200K | 200K |

For the latest model list and pricing, visit [Avian](https://avian.io/).
4 changes: 2 additions & 2 deletions website/docs/references/models-http-api/huggingface.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ You'll need a [Hugging Face account](https://huggingface.co/join) and an [access

## Chat model

Hugging Face Inference Providers provides an OpenAI-compatible chat API interface. Here we use the `MiniMaxAI/MiniMax-M2` model as an example.
Hugging Face Inference Providers provides an OpenAI-compatible chat API interface. Here we use the `MiniMaxAI/MiniMax-M3` model as an example.

```toml title="~/.tabby/config.toml"
[model.chat.http]
kind = "openai/chat"
model_name = "MiniMaxAI/MiniMax-M2" # specify the model you want to use
model_name = "MiniMaxAI/MiniMax-M3" # specify the model you want to use
api_endpoint = "https://router.huggingface.co/v1"
api_key = "your-hf-token"
```
Expand Down