From f255f1badb5fdeed22498034e9c4f45acacca5de Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Tue, 6 Feb 2024 01:28:23 -0800 Subject: [PATCH] Updated model to GPT-4 preview, which is always the latest. --- client/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/utils.py b/client/utils.py index bbb0558..f008a18 100644 --- a/client/utils.py +++ b/client/utils.py @@ -51,7 +51,7 @@ class Standalone: messages = [user_message] try: stream = self.client.chat.completions.create( - model="", + model="gpt-4-turbo-preview", messages=messages, temperature=0.0, top_p=1,