From 03a7c986a91abb24ee4e44208386de504bfad707 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Wed, 24 Apr 2024 16:20:56 -0700 Subject: [PATCH] open the llm up to everyone --- app/bot.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/bot.py b/app/bot.py index dff2150d..7fd7bb4a 100755 --- a/app/bot.py +++ b/app/bot.py @@ -142,10 +142,10 @@ async def fix_social_media_links(ctx): @bot.event async def on_message(ctx): if str(bot.user.id) in ctx.content: - if ctx.author.id == core_utils.my_id: - pass - elif ctx.guild.id not in core_utils.my_guilds: - return + # if ctx.author.id == core_utils.my_id: + # pass + # elif ctx.guild.id not in core_utils.my_guilds: + # return llm_rules = requests.get(core_utils.json_endpoint + "rules.json").json()