Good Morning,
I have been trying to begin experimenting with GPT-3, mainly the text API. I had some initial learning issues, but I did finally get past them to send the below request to opanai.com.
The very first response back was what you see below. I checked my account and I had no activity, I am running on the free account, but absolutely know I am not hitting the limits.
i would like some help to get past this and be able to test and evaluate openai as a help source for our company.
I would think this should not be so hard to get started with as the request structure is straight forward when you figure it out.
Any help would be appreciated.
Fiddler 4 raw request
POST url here
OpenAI-Organization: *************************************************
Authorization: Bearer *************************************************
Content-Type: application/json
User-Agent: PostmanRuntime/7.29.2
Accept: /
Cache-Control: no-cache
Postman-Token: 934ab783-aec5-4587-a7b4-ff71f94dfbbf
Host: api.openai.com
Accept-Encoding: gzip, deflate, br
Connection: keep-alive
Content-Length: 228
{
“model”: “text-davinci-002”,
“prompt”: “What is the best tempurature for baking short bread cookies”,
“max_tokens”: 100,
“temperature”: “.5”,
“n”: 1,
“stream”: false,
“logprobs”: null,
“stop”: “\n”
}
--------------------------- Response ------------------------------------
{
“error”: {
“message”: “You exceeded your current quota, please check your plan and billing details.”,
“type”: “insufficient_quota”,
“param”: null,
“code”: null
}
}