cooldown changes

This commit is contained in:
Atridad Lahiji 2023-11-12 22:08:51 -07:00
parent 72d2f69069
commit b7bd3950c9
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View file

@ -9,9 +9,9 @@ const openai = new OpenAI({
// @ts-ignore
@ApplyOptions<Command.Options>({
description: 'Pic... but better! Cooldown of 10 Minutes!',
description: 'Pic... but better! Cooldown of 8 Minutes!',
options: ['prompt'],
cooldownDelay: 1_000_000,
cooldownDelay: 800_000,
cooldownLimit: 1,
// Yes... I did hardcode myself.
cooldownFilteredUsers: ['83679718401904640'],

View file

@ -9,9 +9,9 @@ const openai = new OpenAI({
// @ts-ignore
@ApplyOptions<Command.Options>({
description: 'Generate a pic every 5 minutes!',
description: 'Generate a pic every 4 minutes!',
options: ['prompt'],
cooldownDelay: 500_000,
cooldownDelay: 400_000,
cooldownLimit: 1,
// Yes... I did hardcode myself.
cooldownFilteredUsers: ['83679718401904640'],

View file

@ -9,7 +9,7 @@ const openai = new OpenAI({
// @ts-ignore
@ApplyOptions<Command.Options>({
description: 'Generate TTS every 5 minutes!',
description: 'Generate TTS every 3 minutes!',
options: ['prompt'],
cooldownDelay: 300_000,
cooldownLimit: 1,