agentconnect.agents.telegram.bot_manager module¶
Telegram bot lifecycle manager.
This module handles the initialization, startup, and shutdown of the Telegram bot, providing a clean interface for the agent to interact with the bot.
- class TelegramBotManager(token, groups_file)¶
Bases:
object
Manager for Telegram bot lifecycle and core functionality.
This class handles the initialization, startup, and shutdown of the Telegram bot, and provides methods for interacting with the bot.
- initialize_bot()¶
Initialize the bot and dispatcher.
- Return type:
- Returns:
True if initialization was successful, False otherwise
- initialize_tools()¶
Initialize Telegram-specific tools.
- Return type:
- Returns:
True if initialization was successful, False otherwise
- register_shutdown_handler(callback)¶
Register a shutdown handler with the dispatcher.
- async start_polling()¶
Start the bot polling.
- Return type:
- Returns:
True if polling started successfully, False otherwise
- async send_message(chat_id, text, reply_to_message_id=None)¶
Send a message to a Telegram chat.