Skip to content

Commit bdc60c7

Browse files
committed
Better handling of larger messages...
1 parent dd7c1eb commit bdc60c7

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/main/java/org/mangorage/mangobotgithub/ChatGPTBot.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ public static ChatGPTResponse askChatGPT(String prompt) throws IOException {
2323
try (Response response = client.newCall(request).execute()) {
2424
if (response.isSuccessful()) {
2525
String responseBody = response.body().string();
26-
System.out.println(responseBody);
2726
return gson.fromJson(responseBody, ChatGPTResponse.class);
2827
}
2928
}

0 commit comments

Comments
 (0)