In the notifications, delete the quotes. The LLM is producing way to many quotes.

This commit is contained in:
git 2025-08-27 11:42:40 +01:00
parent f07e7a77a8
commit ef757cedbf

View File

@ -15,7 +15,7 @@
$bin_name = array_shift($argv);
$score = floatval(trim(file_get_contents(array_shift($argv))));
$message = implode("\n",array_map(fn($o)=>trim(file_get_contents($o)),$argv));
$message = implode("\n",array_map(fn($o)=>trim(str_replace('"','',file_get_contents($o))),$argv));
$telegram_bot_token = getenv()["TELEGRAM_BOT_TOKEN"] ?? "";
$telegram_chat_id = getenv()["TELEGRAM_CHAT_ID"] ?? "";