Merge branch 'main' into feat/discord-support

This commit is contained in:
Anunay Aatipamula
2026-02-03 21:15:15 +05:30
committed by GitHub
15 changed files with 342 additions and 41 deletions

View File

@@ -37,7 +37,9 @@ class ChannelManager:
try:
from nanobot.channels.telegram import TelegramChannel
self.channels["telegram"] = TelegramChannel(
self.config.channels.telegram, self.bus
self.config.channels.telegram,
self.bus,
groq_api_key=self.config.providers.groq.api_key,
)
logger.info("Telegram channel enabled")
except ImportError as e: