Questions tagged [text-davinci-003]
4 questions
2
votes
1 answer
How to stop GPT-3.5-Turbo model from generating text (azure)?
In my use case I am using openai models hosted on azure. I am trying to generate a list of senteces or words with a specific length. Lets take this prompt as an example:
Give 10 Examples of pizza ingredients:
1. tomatoes
2. mushrooms
The…

dude
- 79
- 6
1
vote
0 answers
Generic Answer when Fine Tuning OpenAI Model
I have prepared a dataset and trained a davinci model using FineTuning. It gives out the correct answer for any variant of questions that exist in the dataset.
But how to fine tune the model to give out something like a "Sorry I do not know the…

3e4r5t
- 21
- 3
0
votes
0 answers
How to resolve AxiosError: Request failed with status code 400
I am trying to create a simple program where I am calling OpenAI API for response to the prompt that will be sent using a text box. I am getting the bellow error. I have changed the Path & API Key while submitting a question
AxiosError: Request…

Jerome
- 1
- 1
0
votes
1 answer
OpenAI API: How do I migrate from text-davinci-003 to gpt-3.5-turbo in NodeJS?
How do I migrate from text-davinci-003 to gpt-3.5-turbo?
What I tried to do is the following:
Changing this...
model: "text-davinci-003"
...to this.
model: "gpt-3.5-turbo"
Also, changing this...
const API_URL =…