Skip to content

Commit 14db136

Browse files
committed
Update model names in AgentActor class
1 parent ce8cdc0 commit 14db136

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llmstack/play/actors/agent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,9 +205,9 @@ def on_receive(self, message: Message) -> Any:
205205
model = self._config.get("model", "gpt-3.5-turbo")
206206

207207
if model == "gpt-3.5-turbo-latest":
208-
model = "gpt-3.5-turbo-1106"
208+
model = "gpt-3.5-turbo"
209209
elif model == "gpt-4-turbo-latest":
210-
model = "gpt-4-0125-preview"
210+
model = "gpt-4-turbo"
211211

212212
# Make one call to the model
213213
full_content = ""

0 commit comments

Comments
 (0)