OpenAI GPT-3 API: How do I make sure answers are from a customized (fine-tuning) dataset?

Semantic search example The following is an example of semantic search based on embeddings using the OpenAI API. Wrong goal: OpenAI API should answer from the fine-tuning dataset if the prompt is similar to the one from the fine-tuning dataset It’s completely wrong logic. Forget about fine-tuning. As stated in the official OpenAI documentation: Fine-tuning … Read more

OpenAI GPT-3 API error: “Cannot specify both model and engine”

All Engines endpoints are deprecated. Change the URL from this… https://api.openai.com/v1/engines/davinci/completions …to this. https://api.openai.com/v1/completions If you run test.py the OpenAI API will return a completion. You’ll get a different completion because the temperature parameter is not set to 0. I got the following completion: The meaning of life is to find out and fulfil the … Read more