Skip to content

Commit

Permalink
fix: Fixing php 8.1 inheritence issie.
Browse files Browse the repository at this point in the history
This is a fix for.

Issue #1
  • Loading branch information
addgod authored Jan 15, 2024
1 parent 11608ea commit 4461fdb
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 4461fdb

Please sign in to comment.