diff --git a/other_ext/kamaz_ai.py b/other_ext/kamaz_ai.py index 9ed64e9..289a1a1 100644 --- a/other_ext/kamaz_ai.py +++ b/other_ext/kamaz_ai.py @@ -258,7 +258,7 @@ class Extension: s = [] for ss in suggestions: #s.append(f'{ss["action"]} c вероятностью {ss["confidence"]}') - s.append(f'{round(ss["confidence"] * 100)}) {self.action_translate.get(ss["action"], ss["action"])}') + s.append(f'{round(ss["confidence"] * 100)}%) {self.action_translate.get(ss["action"], ss["action"])}') content = f'KamazAI решил что с этим репортом надо сделать: \n' + "\n".join(s) + "\nОцените решение камаза где :thumbsup: - норм или :thumbsdown: - не очень" response = await message.reply(content=content)