diff --git a/garfbot.py b/garfbot.py index beef1b7..e69542c 100644 --- a/garfbot.py +++ b/garfbot.py @@ -37,7 +37,7 @@ logger.addHandler(handler) openaikey = config.OPENAI_TOKEN gapikey = config.GIF_TOKEN garfkey = config.GARFBOT_TOKEN -txtmodel = "gpt-3.5-turbo" +txtmodel = "gpt-4o-mini" imgmodel = "dall-e-3" intents = discord.Intents.default() @@ -50,8 +50,8 @@ garfbot = discord.Client(intents=intents) @garfbot.event async def on_ready(): asyncio.create_task(process_image_requests()) # Important! - logger.info(f"Logged in as {garfbot.user.name} running {txtmodel} {imgmodel}.") - print(f"Logged in as {garfbot.user.name} running {txtmodel} {imgmodel}.", flush=True) + logger.info(f"Logged in as {garfbot.user.name} running {txtmodel} and {imgmodel}.") + print(f"Logged in as {garfbot.user.name} running {txtmodel} and {imgmodel}.", flush=True) # Json Handling diff --git a/requirements.txt b/requirements.txt index e04b569..1739f04 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ discord.py openai aiohttp +requests