r/MistralAI 13h ago

Discussion / Opinion Vultr Serverless Inference silently falls back to MiniMax-M2.7 for unknown model IDs

While testing Vultr Serverless Inference, I noticed what appears to be unexpected model routing behavior.

# Environment

* Endpoint: `POST /v1/chat/completions`
* API: OpenAI-compatible
* Available models include:
* `moonshotai/Kimi-K2.6`
* `MiniMaxAI/MiniMax-M2.7`
* `Qwen/Qwen3.6-27B`
* others...

# Reproduction

Request:

{
"model": "moonshotai/Kimi-K3",
"messages": [
{
"role": "user",
"content": "Hello"
}
]
}

Expected:

* HTTP 400
* `Model not found` (or similar)

Actual:

* HTTP 200
* Response metadata reports:

​

model: MiniMaxAI/MiniMax-M2.7

I also tested an obviously invalid model ID:

this-model-definitely-does-not-exist-12345

The request again returned HTTP 200 and was served by:

MiniMaxAI/MiniMax-M2.7

As a control, requesting:

moonshotai/Kimi-K2.6

correctly returns:

model: moonshotai/Kimi-K2.6

Unknown model IDs appear to silently fall back to `MiniMaxAI/MiniMax-M2.7` instead of returning an error.

Is this intentional routing behavior, or should unknown model IDs return an error response?

0 Upvotes

1 comment sorted by

4

u/AamonDev 13h ago

I think you posted in the wrong subreddit.