Commit 367736eb by Jonathan Thomas

Removing OpenAI from error message

parent ca79af11
Pipeline #12055 passed with stage
in 21 seconds
...@@ -174,7 +174,7 @@ public class ChatGPTRequest { ...@@ -174,7 +174,7 @@ public class ChatGPTRequest {
while ((errorLine = errorReader.readLine()) != null) { while ((errorLine = errorReader.readLine()) != null) {
errorResponse.append(errorLine.trim()); errorResponse.append(errorLine.trim());
} }
LOGGER.error("Error response from OpenAI: " + errorResponse.toString()); LOGGER.error("Error response from API: " + errorResponse);
} }
return null; return null;
} }
......
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