File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed
src/main/java/com/alibaba/dashscope/utils Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 11package com .alibaba .dashscope .utils ;
22
33public class ParamUtils {
4-
4+
5+ /**
6+ * Private constructor to prevent instantiation of utility class
7+ */
8+ private ParamUtils () {
9+ // Utility class should not be instantiated
10+ }
11+
512 /**
6- * Check if the model is qwen{n} where n >= 3
13+ * Check if the model is qwen{n} where n is greater than or equal to 3
714 *
815 * @param modelName the model name to check
9- * @return true if model is qwen{n} where n >= 3, false otherwise
16+ * @return true if model is qwen{n} where n is greater than or equal to 3,
17+ * false otherwise
1018 */
1119 public static boolean isQwenVersionThreeOrHigher (String modelName ) {
1220 if (modelName == null ) {
You can’t perform that action at this time.
0 commit comments