Reference
Remy Reference/agent/telegramSetTyping
?

telegramSetTyping

Show the "typing..." indicator in a Telegram chat via a bot.
mindstudio.telegramSetTyping({ botToken, chatId }) → Result

Shows the typing indicator in a Telegram chat via a bot — a small touch before a slow reply so the chat does not look stalled.

Parameters
botToken
string
RequiredTelegram bot token in "botId:token" format
chatId
string
RequiredTelegram chat ID to show the typing indicator in
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

const result = await mindstudio.telegramSetTyping({
  botToken: /* ... */,
  chatId: /* ... */
});