OpenAI ChatGPT (GPT-3.5) API error 429: “You exceeded your current quota, please check your plan and billing details” [closed]

TL;DR: To upgrade to a paid plan, set up a paid account, add a credit or debit card, and generate a new API key if your old one was generated before the upgrade. Problem As stated in the official OpenAI documentation: TYPE OVERVIEW RateLimitError Cause: You have hit your assigned rate limit. Solution: Pace your … Read more

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