From b4e3221711969267903d30a0a3c1f1a92e9729de Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 9 May 2025 01:07:55 +0200 Subject: [PATCH] comment debug print --- .config/quickshell/services/Ai.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/services/Ai.qml b/.config/quickshell/services/Ai.qml index a4791b04d..9772b98e0 100644 --- a/.config/quickshell/services/Ai.qml +++ b/.config/quickshell/services/Ai.qml @@ -249,7 +249,7 @@ Singleton { + ` ${headerString}` + ' -H "Authorization: Bearer ${API_KEY}"' + ` -d '${StringUtils.shellSingleQuoteEscape(JSON.stringify(data))}'` - console.log("Request command: ", requestCommandString); + // console.log("Request command: ", requestCommandString); requester.command = baseCommand.concat([requestCommandString]); /* Reset vars and make the request */ @@ -314,7 +314,7 @@ Singleton { const parsedResponse = JSON.parse(requester.message.content + "]"); requester.message.content = `\`\`\`json\n${JSON.stringify(parsedResponse, null, 2)}\n\`\`\``; } catch (e) { - console.log("[AI] Could not parse response on exit: ", e); + // console.log("[AI] Could not parse response on exit: ", e); } } }