openai-php / laravel

⚡️ OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with OpenAI API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GPT 3.5-turbo/4

mobreviews opened this issue · comments

Is there any plan to add the new endpoints for these models?

commented

They exist:

$result = OpenAI::chat()->create([
    'model'    => 'gpt-3.5-turbo',
    'messages' => [
        ['role' => 'user', 'content' => $prompt],
     ],
]);