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)