From c51433f47c4499ac068585ebcc8f3a8b69e68a8e Mon Sep 17 00:00:00 2001 From: samsucik Date: Mon, 19 Feb 2024 13:29:28 +0100 Subject: [PATCH] Adjust ordering of OpenAI models in model selection dropdown --- prompterator/models/openai_models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prompterator/models/openai_models.py b/prompterator/models/openai_models.py index 0cc95dd..b6376a1 100644 --- a/prompterator/models/openai_models.py +++ b/prompterator/models/openai_models.py @@ -119,7 +119,7 @@ class GPT35TurboAzure(ChatGPTMixin): is_chat_model=True, handles_batches_of_inputs=False, configurable_params=CONFIGURABLE_MODEL_PARAMETER_PROPERTIES.copy(), - position_index=1, + position_index=3, ) openai_variant = "azure" specific_model_name = "gpt-35-turbo" @@ -143,7 +143,7 @@ class GPT4Azure(ChatGPTMixin): is_chat_model=True, handles_batches_of_inputs=False, configurable_params=CONFIGURABLE_MODEL_PARAMETER_PROPERTIES.copy(), - position_index=2, + position_index=4, ) openai_variant = "azure" specific_model_name = "gpt-4"