Update ui_helpers.py
Browse files- ui_helpers.py +1 -1
ui_helpers.py
CHANGED
|
@@ -23,7 +23,7 @@ def get_model_display_name(model_name: str) -> str:
|
|
| 23 |
|
| 24 |
def select_random_models() -> tuple[str, str]:
|
| 25 |
"""Randomly select two models from the available list including gpt5."""
|
| 26 |
-
models = ["
|
| 27 |
selected_models = random.sample(models, 2)
|
| 28 |
return selected_models[0], selected_models[1]
|
| 29 |
|
|
|
|
| 23 |
|
| 24 |
def select_random_models() -> tuple[str, str]:
|
| 25 |
"""Randomly select two models from the available list including gpt5."""
|
| 26 |
+
models = ["mistral", "mistral", "mistral", "mistral"]
|
| 27 |
selected_models = random.sample(models, 2)
|
| 28 |
return selected_models[0], selected_models[1]
|
| 29 |
|