Spaces:
Running
Running
Commit
·
105831b
1
Parent(s):
71017fb
sorted model list order
Browse files- src/config.py +3 -1
src/config.py
CHANGED
@@ -182,7 +182,9 @@ def _generate_combined_variants():
|
|
182 |
return combined_models
|
183 |
|
184 |
# Supported Models (includes base models, search variants, and thinking variants)
|
185 |
-
|
|
|
|
|
186 |
|
187 |
# Helper function to get base model name from any variant
|
188 |
def get_base_model_name(model_name):
|
|
|
182 |
return combined_models
|
183 |
|
184 |
# Supported Models (includes base models, search variants, and thinking variants)
|
185 |
+
# Combine all models and then sort them by name to group variants together
|
186 |
+
all_models = BASE_MODELS + _generate_search_variants() + _generate_thinking_variants()
|
187 |
+
SUPPORTED_MODELS = sorted(all_models, key=lambda x: x['name'])
|
188 |
|
189 |
# Helper function to get base model name from any variant
|
190 |
def get_base_model_name(model_name):
|