feat(feishu): add audio transcription support using Groq Whisper

This commit is contained in:
chengyongru
2026-03-07 16:19:55 +08:00
parent ab89775d59
commit 215360113f
2 changed files with 16 additions and 2 deletions

View File

@@ -74,7 +74,8 @@ class ChannelManager:
try:
from nanobot.channels.feishu import FeishuChannel
self.channels["feishu"] = FeishuChannel(
self.config.channels.feishu, self.bus
self.config.channels.feishu, self.bus,
groq_api_key=self.config.providers.groq.api_key,
)
logger.info("Feishu channel enabled")
except ImportError as e: