We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce8cdc0 commit 14db136Copy full SHA for 14db136
llmstack/play/actors/agent.py
@@ -205,9 +205,9 @@ def on_receive(self, message: Message) -> Any:
205
model = self._config.get("model", "gpt-3.5-turbo")
206
207
if model == "gpt-3.5-turbo-latest":
208
- model = "gpt-3.5-turbo-1106"
+ model = "gpt-3.5-turbo"
209
elif model == "gpt-4-turbo-latest":
210
- model = "gpt-4-0125-preview"
+ model = "gpt-4-turbo"
211
212
# Make one call to the model
213
full_content = ""
0 commit comments