reduce anmount of detail for users

This commit is contained in:
Max Kammler 2023-02-08 14:41:00 +01:00 committed by bertybuttface
parent 2ea46ccf12
commit acd5e2409a

View File

@ -124,9 +124,8 @@ export default class CommandHandler {
const result = await sendChatGPTMessage(this.chatGPT, await bodyWithoutPrefix, storedConversation)
.catch((error) => {
LogService.warn(`OpenAI-API Error: ${error}`);
sendError(this.client, `Sorry, there was an error using the OpenAI-API. Details:\n${error}`, roomId, event.event_id);
return;
LogService.error(`OpenAI-API Error: ${error}`);
sendError(this.client, "The bot has encountered an error, please contact your administrator.", roomId, event.event_id);
});
await Promise.all([
this.client.setTyping(roomId, false, 500),