返回提交历史
Modified
g4f/Provider/Qwen.py
+2
-0
XFEstudio/gpt4free
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
6972b56c
代码差异
1 个文件
+2
-0
@@ -28,6 +28,7 @@ class Qwen(AsyncGeneratorProvider, ProviderModelMixin):
28
28
29
29
# Complete list of models, extracted from the API
30
30
models = [
31
"qwen3-max-preview",
31
32
"qwen3-235b-a22b",
32
33
"qwen3-coder-plus",
33
34
"qwen3-30b-a3b",
@@ -206,3 +207,4 @@ class Qwen(AsyncGeneratorProvider, ProviderModelMixin):
206
207
raise e
207
208
208
209
raise RateLimitError("The Qwen provider reached the request limit after 5 attempts.")
210