#Rate limit error on first attempt. No usage in account dashboard.
4 messages · Page 1 of 1 (latest)
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)`
You either have a very low limiter or your key is incorrect.
https://platform.openai.com/account/billing/limits
An API for accessing new AI models developed by OpenAI
^^, make sure your API key is correct, and try to upgrade to a paid account if you're able to