Skip to content

Commit

Permalink
update bots
Browse files Browse the repository at this point in the history
  • Loading branch information
genekogan committed Dec 18, 2023
1 parent 0e5cbe3 commit f9921d1
Show file tree
Hide file tree
Showing 25 changed files with 38 additions and 697 deletions.
5 changes: 5 additions & 0 deletions src/bots/abraham/.env.example
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
DISCORD_TOKEN=
MONGO_URI=
MONGO_DB_NAME=

EDEN_API_URL=
EDEN_API_KEY=
EDEN_API_SECRET=
EDEN_CHARACTER_ID=

ALLOWED_GUILDS=
ALLOWED_GUILDS_TEST=
ALLOWED_CHANNELS=

LOGOS_URL=
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
from cogs.CharacterGeneratorCog import CharacterGeneratorCog


class KojiiCharacterGeneratorCog(CharacterGeneratorCog):
class EdenCharacterGeneratorCog(CharacterGeneratorCog):
def __init__(self, bot: commands.bot) -> None:
super().__init__(bot)


def setup(bot: commands.Bot) -> None:
bot.add_cog(KojiiCharacterGeneratorCog(bot))
bot.add_cog(EdenCharacterGeneratorCog(bot))
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from discord.ext import commands
from cogs.CharacterCog import CharacterCog
from cogs.LogosCharacterCog import LogosCharacterCog


class AbrahamCharacterCog(CharacterCog):
class EdenLogosCharacterCog(LogosCharacterCog):
def __init__(self, bot: commands.bot) -> None:
super().__init__(bot)


def setup(bot: commands.Bot) -> None:
bot.add_cog(AbrahamCharacterCog(bot))
bot.add_cog(EdenLogosCharacterCog(bot))
13 changes: 0 additions & 13 deletions src/bots/abraham/prompts/character_description.txt

This file was deleted.

29 changes: 0 additions & 29 deletions src/bots/abraham/prompts/creator_prompt.txt

This file was deleted.

47 changes: 0 additions & 47 deletions src/bots/abraham/prompts/documentation.txt

This file was deleted.

1 change: 0 additions & 1 deletion src/bots/abraham/prompts/documentation_prompt.txt

This file was deleted.

7 changes: 0 additions & 7 deletions src/bots/abraham/prompts/router_prompt.txt

This file was deleted.

5 changes: 4 additions & 1 deletion src/bots/eden/.env.example
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
DISCORD_TOKEN=
MONGO_URI=
MONGO_DB_NAME=

EDEN_API_URL=
EDEN_API_KEY=
EDEN_API_SECRET=
EDEN_CHARACTER_ID=

ALLOWED_GUILDS=
ALLOWED_GUILDS_TEST=
ALLOWED_CHANNELS=
OPENAI_API_KEY=

LOGOS_URL=
25 changes: 0 additions & 25 deletions src/bots/eden/EdenAssistantCog.py

This file was deleted.

7 changes: 3 additions & 4 deletions src/bots/eden/EdenGeneratorCog.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
from discord.ext import commands
from cogs.CharacterGeneratorCog import CharacterGeneratorCog

from cogs.GeneratorCog import GeneratorCog


class EdenGeneratorCog(GeneratorCog):
class EdenCharacterGeneratorCog(CharacterGeneratorCog):
def __init__(self, bot: commands.bot) -> None:
super().__init__(bot)


def setup(bot: commands.Bot) -> None:
bot.add_cog(EdenGeneratorCog(bot))
bot.add_cog(EdenCharacterGeneratorCog(bot))
Loading

0 comments on commit f9921d1

Please sign in to comment.