Skip to content

Commit

Permalink
make abraham bot
Browse files Browse the repository at this point in the history
  • Loading branch information
genekogan committed Dec 13, 2023
1 parent 319bd40 commit f3d654a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
File renamed without changes.
15 changes: 4 additions & 11 deletions src/bots/abraham/AbrahamGeneratorCog.py
Original file line number Diff line number Diff line change
@@ -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))

0 comments on commit f3d654a

Please sign in to comment.