Reference
Remy Reference/agent/telegramSendVideo
?

telegramSendVideo

Send a video to a Telegram chat via a bot.
mindstudio.telegramSendVideo({ botToken, chatId, videoUrl }) → Result

Sends a video to a Telegram chat via a bot.

Parameters
botToken
string
RequiredTelegram bot token in "botId:token" format
chatId
string
RequiredTelegram chat ID to send the video to
videoUrl
string
RequiredURL of the video to send
caption
string
Optional caption text for the video
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

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