Hi, I have a Postman trying to perform a POST request with the following tags:
URL: https://api.openai.com/v1/engines/davinci/jobs
Headers:
- Content-Type: application/json
- Authorization: Bearer [API KEY]
Body (Raw):
{
"prompt": "What is the capital of France?",
"temperature": 0.5
}
I keep getting the following error when I send the request:
{
"error": {
"message": "Unknown endpoint for this model.",
"type": "invalid_request_error",
"param": null,
"code": null
}
}
My goal is to submit a question to OpenAI API and get a response for that question.
How do I fix this error?