1 error:
I get an error about exceeding quota ("insufficient_quota"), while I have a balance on my account
// curl https://api.openai.com/v1/completions \ // -H "Content-Type: application/json" \ // -H "Authorization: Bearer MY_TOKEN" \ // -d '{"model": "text-davinci-003", "prompt": "Say this is a test", "temperature": 0, "max_tokens": 7}'
2 error:
I get an error with code 429 (exceeded limit on number of requests per hour), making 1 request per hour. That is, I waited for 2 days and made a request again, but again got the error code 429. How is it possible?
To summarize, with curl requests I get error "insufficient_quota", and with nodejs requests I get error 429. I have no idea what's going on, everything was working before.
Thank you in advance for your feedback.