a Few days back, I created an account with chat gpt. Now I have tried api the first time but it's giving me an error; my quota has finished. but I have not used it. even in the usage section, it's telling 0 calls so far. I still have full credit. I created an account 5 days ago. and created API key 24 hours ago.
import openai
import os
# Set up OpenAI API client
openai.api_key = 'string_key'
# model_engine = "curie" # choose a language model, for example 'davinci' or 'curie'
# model = 'gpt-3.5-turbo'
# Generate text with GPT
prompt = 'what is moon size'
response = openai.Completion.create(
engine='gpt-3.5-turbo',
prompt=prompt,
max_tokens=10,
n=1,
stop=None,
temperature=0.5,
)
print(response.choices[0].message.content)
But I saw people creating it and using it. is it locked because of country restrictions? just like the Google Bard project only allowed in certain countries?
I have read a couple of questions about that this_anser. But my problem is its a new account and I am using it for the first time. So getting out of quota does not seem right.