feat(qwen): add support for qwen3-max-preview model

This adds the 'qwen3-max-preview' model to the list of supported models for the chat.qwen.ai provider.

Resolves #3172
This commit is contained in:
Oppon
2025-09-08 01:24:47 -03:00
committed by GitHub
parent 4c1da4e610
commit 6972b56c8c

View File

@@ -28,6 +28,7 @@ class Qwen(AsyncGeneratorProvider, ProviderModelMixin):
# Complete list of models, extracted from the API
models = [
"qwen3-max-preview",
"qwen3-235b-a22b",
"qwen3-coder-plus",
"qwen3-30b-a3b",
@@ -206,3 +207,4 @@ class Qwen(AsyncGeneratorProvider, ProviderModelMixin):
raise e
raise RateLimitError("The Qwen provider reached the request limit after 5 attempts.")