add infermatic-text and whois plugins for AI text generation and WHOIS lookups

This commit is contained in:
2026-04-26 02:20:23 -05:00
parent ed62397661
commit 6f86fe679f
10 changed files with 345 additions and 290 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ async def handle_command(room, message, bot, PREFIX, config):
else:
search_terms = " ".join(args)
logging.info(f"Performing YouTube search for: {search_terms}")
results = YoutubeSearch(search_terms, max_results=1).to_dict()
results = YoutubeSearch(search_terms, max_results=3).to_dict()
if results:
output = generate_output(results)
await send_collapsible_message(room, bot, output)