Skip to content

Commit

Permalink
Readme: Fix model used in example (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
pb30 authored Nov 7, 2023
1 parent 5eca8bc commit 53e1897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Finally, you may use the `OpenAI` facade to access the OpenAI API:
use OpenAI\Laravel\Facades\OpenAI;

$result = OpenAI::chat()->create([
'model' => 'gpt-3.5-turbo-instruct',
'model' => 'gpt-3.5-turbo',
'messages' => [
['role' => 'user', 'content' => 'Hello!'],
],
Expand Down

0 comments on commit 53e1897

Please sign in to comment.