Rate Limit Issue for a newly made account

I just made this account and got $5 worth of free tokens, now even when i simply call the chat completion API or any. I get the rate limit issue that i have used my quota but in usage there isn’t a single request that was processed.

from openai import OpenAI
client = OpenAI()

article_text = """Hello, I'm alii"""
completion = client.chat.completions.create(
  model="babbage-002",
  messages=[
    {"role": "system", "content": "You have to make introduction"},
    {"role": "user", "content": article_text}
  ]
)

print(completion.choices[0].message)

Error I get is:

penai.RateLimitError: Error code: 429 - {'error': {'message': 'You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.', 'type': 'insufficient_quota', 'param': None, 'code': 'insufficient_quota'}}

Hello, OpenAI recently discontinued free trial credits. Try adding credits to your account using a credit card and trying again.

Alright let me try that. At first i was able to send requests with a different account but now i can’t. Looks something like this.

Thanks :slight_smile: