Kaveen Kumarasinghe 2 years ago
commit 53fd818a0a

@ -518,6 +518,12 @@ class GPT3ComCon(commands.Cog, name="GPT3ComCon"):
from_context = isinstance(ctx, discord.ApplicationContext) from_context = isinstance(ctx, discord.ApplicationContext)
# Replace 'Human:' with the user's name
try:
new_prompt = new_prompt.replace("Human:", ctx.author.name + ":")
except AttributeError:
pass
try: try:
tokens = self.usage_service.count_tokens(new_prompt) tokens = self.usage_service.count_tokens(new_prompt)

Loading…
Cancel
Save