Skip to content

Commit

Permalink
char id
Browse files Browse the repository at this point in the history
  • Loading branch information
genekogan committed Dec 20, 2023
1 parent 384498b commit 62db744
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/cogs/LogosCharacterCog.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
EDEN_API_SECRET = os.getenv("EDEN_API_SECRET")
EDEN_CHARACTER_ID = os.getenv("EDEN_CHARACTER_ID")

print("EDEN CHAR", EDEN_CHARACTER_ID)

@dataclass
class LoraInput:
Expand Down Expand Up @@ -78,6 +79,9 @@ async def on_message(self, message: discord.Message) -> None:
"attachments": attachment_urls,
}

print("THE INTERACTION")
print(interaction)

response = request_logos_assistant(LOGOS_URL, assistant, interaction)
reply = response.get("message")[:2000]
reply_message = await message.reply(reply)
Expand Down

0 comments on commit 62db744

Please sign in to comment.