Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
jmilldotdev committed Dec 12, 2023
1 parent 7f1e7ae commit fb80289
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/cogs/AssistantCog.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ def __init__(
assistant_config: EdenAssistantConfig,
lora: Optional[LoraInput] = None,
) -> None:
print("AssistantCog init...")
self.bot = bot
self.eden_credentials = SignInCredentials(
apiKey=EDEN_API_KEY, apiSecret=EDEN_API_SECRET
Expand Down
1 change: 1 addition & 0 deletions src/cogs/CharacterCog.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ def __init__(
self,
bot: commands.bot,
) -> None:
print("CharacterCog init...")
self.bot = bot
self.eden_credentials = SignInCredentials(
apiKey=EDEN_API_KEY, apiSecret=EDEN_API_SECRET
Expand Down
1 change: 1 addition & 0 deletions src/cogs/CharacterGeneratorCog.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ class LoraInput:

class CharacterGeneratorCog(commands.Cog):
def __init__(self, bot: commands.bot) -> None:
print("CharacterGeneratorCog init...")
self.bot = bot
self.eden_credentials = SignInCredentials(
apiKey=EDEN_API_KEY, apiSecret=EDEN_API_SECRET
Expand Down
1 change: 1 addition & 0 deletions src/cogs/GeneratorCog.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class LoraInput:

class GeneratorCog(commands.Cog):
def __init__(self, bot: commands.bot, lora: Optional[LoraInput] = None) -> None:
print("GeneratorCog init...")
self.bot = bot
self.eden_credentials = SignInCredentials(
apiKey=EDEN_API_KEY, apiSecret=EDEN_API_SECRET
Expand Down

0 comments on commit fb80289

Please sign in to comment.