You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# For SiliconFlow and Non-Qwen models, dimensions parameter is not supported. so remove it.
86
+
removed_dimensions=kwargs.pop("dimensions", None)
87
+
ifremoved_dimensionsisnotNone:
88
+
# Log a warning message if dimensions parameter is removed.
89
+
logger.warning(
90
+
f"dimensions not supported for model '{self.model}' of provider '{provider_id}' as SiliconFlow does not support this parameter for non-Qwen models: '{removed_dimensions}'."
0 commit comments