Commit eb9a53c5de11
Changed files (1)
modules
xmpp-research-bot
modules/xmpp-research-bot/bot.py
@@ -89,6 +89,9 @@ class ResearchBot(slixmpp.ClientXMPP):
msg.reply(f"๐ Researching with {model_name}: {query}").send()
try:
+ # Notify user that API call is in progress
+ msg.reply("โณ Calling Claude API, please wait...").send()
+
# Perform research
result = await self.research(query, model=model)