Compare commits
2 commits
6f5f425166
...
1b402c791c
Author | SHA1 | Date | |
---|---|---|---|
1b402c791c | |||
c4edf55f65 |
2 changed files with 19 additions and 2 deletions
|
@ -57,6 +57,22 @@ export default class Ask extends Command implements Command {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const userLimit = await config.quota.checkUser(interaction.user, interaction);
|
||||||
|
|
||||||
|
if (userLimit.used >= userLimit.quota) {
|
||||||
|
interaction.reply({
|
||||||
|
|
||||||
|
embeds: [{
|
||||||
|
color: 0xff0000,
|
||||||
|
description: "You've used up your quota,\n" + userLimit.toString(),
|
||||||
|
}],
|
||||||
|
ephemeral: true,
|
||||||
|
}).catch(e => {
|
||||||
|
console.error("Failed to reply to user: ", e);
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: check content in moderation API
|
// TODO: check content in moderation API
|
||||||
|
|
||||||
const messages: ChatCompletionMessageParam[] = [
|
const messages: ChatCompletionMessageParam[] = [
|
||||||
|
|
|
@ -191,7 +191,8 @@ function logUsedTokens(
|
||||||
// it doesn't make sense to store usage in database if we don't know where it came from
|
// it doesn't make sense to store usage in database if we don't know where it came from
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const channelName: string = !message.channel ? "[No channel]"
|
const channelName: string = !message.channelId ? "[No channel]"
|
||||||
|
: !message.channel ? `[Unknown channel: ${message.channelId}]`
|
||||||
: !message.channel.isDMBased() ? `#${message.channel.name} (${message.guild?.name})`
|
: !message.channel.isDMBased() ? `#${message.channel.name} (${message.guild?.name})`
|
||||||
: `#@${getAuthor(message).tag}`
|
: `#@${getAuthor(message).tag}`
|
||||||
;
|
;
|
||||||
|
|
Loading…
Add table
Reference in a new issue