Skip to content

Commit

Permalink
Add ai generated prefix to guessed commands, lol
Browse files Browse the repository at this point in the history
  • Loading branch information
tectonick committed Jan 23, 2025
1 parent cd6d1ad commit 4f9613c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/core/HackerEmbassyBot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ export default class HackerEmbassyBot extends TelegramBot {
? await messageContext.run(() =>
openAI
.askChat(text, t("embassy.neural.contexts.guess"))
.then(guess => this.sendMessageExt(message.chat.id, guess, message))
.then(guess => this.sendMessageExt(message.chat.id, "[ai generated] " + guess, message))
.catch(error => logger.error(error))
)
: null;
Expand Down

0 comments on commit 4f9613c

Please sign in to comment.