#DALL-E 3 daily maximum countdown

1 messages · Page 1 of 1 (latest)

warm cypress
#

Bug Report:

Steps to reproduce:

  1. Generate a lot of images with dalle3 in ChatGPT.
  2. Hit your daily maximum number of images.

Expected result:

"Your daily maximum will reset in <correct remaining time>"

Actual result:

"Your daily maximum will reset in <wrong remaining time>

Additional information

Browser: any
OS: any

It's taking the timestamp of the last reset and subtracts it from the current timestamp. ChatGPT gives you the time elapsed since the last reset instead of the actual remaining time. 100% repro so far.

If your daily limit runs out at 1:27 AM, ChatGPT tell you

"Your daily maximum will reset in 22 hours and 27 minutes.". instead of
"Your daily maximum will reset in 1 hour and 33 minutes."

https://cdn.discordapp.com/attachments/1034705979306168340/1200702637855756388/image.png

warm cypress
#

Bonus
How to fix it:

Currently it gives you the time elapsed since the last reset. You should take this value and subtract it from 24h.

my_bad_value = current_timestamp - last_reset_timestamp

# assuming timestamp are in seconds
my_correct_value = 86400 - my_bad_value
brazen crypt
#

interesting bug report

strange thistle
#

fix incoming - thanks for reporting!