feat(exec-bridge): send typing indicator on start

This commit is contained in:
banteg
2025-12-28 20:30:56 +04:00
parent 245d22eb82
commit 0a984e228a
2 changed files with 12 additions and 0 deletions
@@ -139,6 +139,13 @@ class TelegramClient:
sent.append(msg)
return sent
def send_chat_action(self, chat_id: int, action: str = "typing") -> Dict[str, Any]:
params: Dict[str, Any] = {
"chat_id": chat_id,
"action": action,
}
return self._call("sendChatAction", params)
@dataclass(frozen=True)
class Route: