#Rate limit error on first attempt. No usage in account dashboard.

4 messages · Page 1 of 1 (latest)

wooden grove
#

i got a rate limit error the first time i tried running a super basic python script incorporating openAI... very confused why it says i hit the rate limit. I've barely send any requests, and i'm looking at my account's "usage" dashboard and not seeing any instances of use. help!

#

ridiculously simple script:

`import openai
import os

openai.api_key = os.getenv("OPENAI_API_KEY")

response = openai.Completion.create(
model="text-davinci-003",
prompt="Say this is a test", temperature=0, max_tokens=7)

print(response.choices[0].text)`

near shore
west isle
#

^^, make sure your API key is correct, and try to upgrade to a paid account if you're able to