Commit 8daf286b by Jonathan Thomas

Change model back to GPT 3.5 for testing (less expensive)

parent 0e55620d
...@@ -116,7 +116,7 @@ public class ChatGPTRequest { ...@@ -116,7 +116,7 @@ public class ChatGPTRequest {
} }
// Convert JSON to String // Convert JSON to String
ChatGPTRequestPayload payload = new ChatGPTRequestPayload("gpt-4-turbo-preview", messages, jsonMode, 1.0f); ChatGPTRequestPayload payload = new ChatGPTRequestPayload("gpt-3.5-turbo", messages, jsonMode, 1.0f);
Gson gsonInput = new Gson(); Gson gsonInput = new Gson();
String jsonInputString = gsonInput.toJson(payload); String jsonInputString = gsonInput.toJson(payload);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment