Skip to content

Commit

Permalink
Adjust ordering of OpenAI models in model selection dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
samsucik committed Feb 19, 2024
1 parent fb0fde0 commit c51433f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prompterator/models/openai_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down

0 comments on commit c51433f

Please sign in to comment.