chore: update changelog and docs for qwen extension

This commit is contained in:
Mario Zechner 2026-02-01 01:52:53 +01:00
parent 993c45a059
commit 7d632ba1c3
4 changed files with 15 additions and 2 deletions

View file

@ -135,6 +135,7 @@ models: [{
maxTokensField: "max_tokens", // instead of "max_completion_tokens"
requiresToolResultName: true, // tool results need name field
requiresMistralToolIds: true // tool IDs must be 9 alphanumeric chars
thinkingFormat: "qwen" // uses enable_thinking: true
}
}]
```
@ -532,7 +533,7 @@ interface ProviderModelConfig {
requiresAssistantAfterToolResult?: boolean;
requiresThinkingAsText?: boolean;
requiresMistralToolIds?: boolean;
thinkingFormat?: "openai" | "zai";
thinkingFormat?: "openai" | "zai" | "qwen";
};
}
```