We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd7c1eb commit bdc60c7Copy full SHA for bdc60c7
1 file changed
src/main/java/org/mangorage/mangobotgithub/ChatGPTBot.java
@@ -23,7 +23,6 @@ public static ChatGPTResponse askChatGPT(String prompt) throws IOException {
23
try (Response response = client.newCall(request).execute()) {
24
if (response.isSuccessful()) {
25
String responseBody = response.body().string();
26
- System.out.println(responseBody);
27
return gson.fromJson(responseBody, ChatGPTResponse.class);
28
}
29
0 commit comments