I’m assuming that as of today, only 3.5 turbo can only be used by the API?
Is that true or false?
if false, what do you call the model in a variable?
or what is the correct URL to use?
$url = 'https://api.openai.com/v1/engines/gpt-3.5-turbo/completions';
$url = 'https://api.openai.com/v1/chat/completions';
$data["model"] = "gpt-3.5-turbo";
$data["model"] = "text-davinci-003";
as you can see, I’m getting confused on WHAT I “should” be using to use the latest version.
thanks!