v1.8.2: AGENTS.md, consent revocation, delete bot users, dialogues fix, intent improvements, CI for max_bot
Tests / test (push) Has been cancelled
Tests / test-max-bot (push) Has been cancelled

This commit is contained in:
2026-06-02 18:22:45 +03:00
parent a64a274829
commit 4c3026a80f
17 changed files with 572 additions and 54 deletions
+3
View File
@@ -58,6 +58,7 @@ async def handle_manual_contact(user_id: int, conv_id: int, text: str) -> None:
user_id,
"Пожалуйста, введите корректный номер телефона (например, +7 (861) 203-33-30) "
"или адрес электронной почты. Или напишите «Отмена» чтобы вернуться назад.",
conversation_id=conv_id,
)
@@ -66,6 +67,7 @@ async def _ask_inquiry(user_id: int, conv: BotConversation) -> None:
user_id,
"Опишите, пожалуйста, ваш вопрос или задачу. "
"Расскажите подробнее, чем мы можем вам помочь.",
conversation_id=conv.id,
)
@@ -76,4 +78,5 @@ async def _ask_inquiry_with_context(user_id: int, conv: BotConversation) -> None
f"Ранее вы упомянули, что хотите оставить {intent_label}. "
"Опишите подробнее суть вашего обращения, чтобы я могла передать "
"информацию специалисту.",
conversation_id=conv.id,
)