From d27a54cc225236c2bd3edf8997468860f0aa802d Mon Sep 17 00:00:00 2001 From: pliny <133052465+elder-plinius@users.noreply.github.com> Date: Tue, 28 Nov 2023 13:06:48 -0800 Subject: [PATCH] Update openai_models.py --- swarms/models/openai_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swarms/models/openai_models.py b/swarms/models/openai_models.py index 0547a264..2fd86122 100644 --- a/swarms/models/openai_models.py +++ b/swarms/models/openai_models.py @@ -760,7 +760,7 @@ class OpenAIChat(BaseLLM): """ client: Any #: :meta private: - model_name: str = "gpt-3.5-turbo" + model_name: str = "gpt-3.5-turbo-1106" """Model name to use.""" model_kwargs: Dict[str, Any] = Field(default_factory=dict) """Holds any model parameters valid for `create` call not explicitly specified."""