File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
src/Cnblogs.DashScope.Sdk/QWenMultimodal Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -18,5 +18,20 @@ public enum QWenMultimodalModel
1818 /// <summary>
1919 /// qwen-audio-turbo
2020 /// </summary>
21- QWenAudioTurbo = 3
21+ QWenAudioTurbo = 3 ,
22+
23+ /// <summary>
24+ /// qwen-vl-v1
25+ /// </summary>
26+ QWenVlV1 = 4 ,
27+
28+ /// <summary>
29+ /// qwen-vl-chat-v1
30+ /// </summary>
31+ QWenVlChatV1 = 5 ,
32+
33+ /// <summary>
34+ /// qwen-audio-chat
35+ /// </summary>
36+ QWenAudioChat = 6
2237}
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ public static string GetModelName(this QWenMultimodalModel multimodalModel)
99 QWenMultimodalModel . QWenVlPlus => "qwen-vl-plus" ,
1010 QWenMultimodalModel . QWenVlMax => "qwen-vl-max" ,
1111 QWenMultimodalModel . QWenAudioTurbo => "qwen-audio-turbo" ,
12+ QWenMultimodalModel . QWenVlV1 => "qwen-vl-v1" ,
13+ QWenMultimodalModel . QWenVlChatV1 => "qwen-vl-chat-v1" ,
14+ QWenMultimodalModel . QWenAudioChat => "qwen-audio-chat" ,
1215 _ => throw new ArgumentOutOfRangeException (
1316 nameof ( multimodalModel ) ,
1417 multimodalModel ,
You can’t perform that action at this time.
0 commit comments