Skip to content

Commit

Permalink
log
Browse files Browse the repository at this point in the history
  • Loading branch information
genekogan committed Jan 12, 2024
1 parent 500f400 commit 6f4b859
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cogs/LogosCharacterCog.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ async def on_message(self, message: discord.Message) -> None:
async with ctx.channel.typing():
request["prompt"] = prompt
response = logos_speak(LOGOS_URL, request)

print("response")
print(response)
reply = response.get("message")
reply_chunks = [reply[i:i+2000] for i in range(0, len(reply), 2000)]
for chunk in reply_chunks:
Expand Down

0 comments on commit 6f4b859

Please sign in to comment.