From dea31674862fab950b8360b3dd0f129416962ca4 Mon Sep 17 00:00:00 2001 From: gsd Date: Sun, 7 Jun 2026 21:36:07 +0300 Subject: [PATCH] fix 1 --- other_ext/kamaz_ai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/other_ext/kamaz_ai.py b/other_ext/kamaz_ai.py index 3b0422d..be4c913 100644 --- a/other_ext/kamaz_ai.py +++ b/other_ext/kamaz_ai.py @@ -231,7 +231,7 @@ class Extension: suggestions = result.get("suggestions", []) s = [] for ss in suggestions: - s.append(f'{ss["action"]} c вероятностью {ss['confidence']}') + s.append(f'{ss["action"]} c вероятностью {ss["confidence"]}') content = f'KamazAI решил что с этим репортом надо сделать: ' + ",".join(s) + "\nОцените решение камаза где :thumbsup: - норм или :thumbsdown: - не очень" response = await message.reply(content=content)