Skip to content

Commit

Permalink
Merge pull request #2 from addgod/patch-1
Browse files Browse the repository at this point in the history
fix: Fixing php 8.1 inheritence issie.
  • Loading branch information
jumbaeric authored Jan 15, 2024
2 parents 11608ea + 4461fdb commit 94f8c05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OpenAI/Chat.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
final class Chat extends OpenAI
{
public string $service = 'chat/completions';
public $model = 'gpt-3.5-turbo';
public string $model = 'gpt-3.5-turbo';
public $stop = "\n";
public array $messages;

Expand Down

0 comments on commit 94f8c05

Please sign in to comment.