I've just created an APP to get prompts from Davinci, but the output is not great. GPT4.0 blows it out of the water, but I'm still on the waiting list.
Is there a way to use prompts (like completion) for GPT3.5Turbo API, or does it only work as Chat?
I just don't understand how I can use the following chat format:
model: "gpt-3.5-turbo",
messages: [{role: "user", content: "Hello world"}],
to be more like this:
"model": "text-davinci-003",
"prompt": "Respond to this email." + emailContent,
I guess:
model: "gpt-3.5-turbo",
messages: [{ role: "user", content: "Respond to this email." + emailContent }],