I just created an OpenAI account a few minutes ago, and I’m attempting to use some of the models in a very simple python script as a demo. All I have right now is:
import os
import openai
openai.api_key = “[API KEY REDACTED]”
response = openai.Completion.create(model=“text-davinci-003”, prompt=“Say this is a test”, temperature=0, max_tokens=7)
print(response)
When I run the script, I get a 429 error:
“openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details.”
From my understanding OpenAI gives new users a 4 month free trial for up to $18 of free credit. Did this policy change or did I do something wrong? The only thing I can think of is that I created a second API key after I forgot to copy the first one to my clipboard (lol).
Thanks in advance.