I have started to implement openai gpt model in python. I have to send a single request in which I am getting RateLimitError.
My code looks like this
import openai
key = '<SECRET-KEY>'
openai.api_key = key
model_engine = 'text-ada-001'
prompt = 'Hi, How are you today?'
completion = openai.Completion.create(engine=model_engine, prompt=prompt, max_token=2048, n=1, stop=None, temprature=0.5)
print(completion.choices)
This is what error I am getting
openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details.
So, How do I do development without getting this error? I have checked the doc they provide a free version with limitations but this is the initial stage I have sent only 5-6 requests in an hour.
Thanks advance for your help.