From f3d654a17c1c3ae4ec3d586048ae381e2bcc0c0f Mon Sep 17 00:00:00 2001 From: Gene Kogan Date: Tue, 12 Dec 2023 19:34:13 -0800 Subject: [PATCH] make abraham bot --- ...ahamAssistantCog.py => AbrahamCharacterCog.py} | 0 src/bots/abraham/AbrahamGeneratorCog.py | 15 ++++----------- 2 files changed, 4 insertions(+), 11 deletions(-) rename src/bots/abraham/{AbrahamAssistantCog.py => AbrahamCharacterCog.py} (100%) diff --git a/src/bots/abraham/AbrahamAssistantCog.py b/src/bots/abraham/AbrahamCharacterCog.py similarity index 100% rename from src/bots/abraham/AbrahamAssistantCog.py rename to src/bots/abraham/AbrahamCharacterCog.py diff --git a/src/bots/abraham/AbrahamGeneratorCog.py b/src/bots/abraham/AbrahamGeneratorCog.py index 33ef85f..2c13876 100644 --- a/src/bots/abraham/AbrahamGeneratorCog.py +++ b/src/bots/abraham/AbrahamGeneratorCog.py @@ -1,18 +1,11 @@ from discord.ext import commands +from cogs.CharacterGeneratorCog import CharacterGeneratorCog -from cogs.GeneratorCog import GeneratorCog, LoraInput - -class AbrahamGeneratorCog(GeneratorCog): +class AbrahamCharacterGeneratorCog(CharacterGeneratorCog): def __init__(self, bot: commands.bot) -> None: - lora = LoraInput( - lora_id="6558ee435e91d48ad780de92", - lora_strength=0.65, - lora_trigger="abraham", - require_lora_trigger=True, - ) - super().__init__(bot, lora) + super().__init__(bot) def setup(bot: commands.Bot) -> None: - bot.add_cog(AbrahamGeneratorCog(bot)) + bot.add_cog(AbrahamCharacterGeneratorCog(bot))