From 53e18975f3b864caa48cd29a0c5625c153c76428 Mon Sep 17 00:00:00 2001 From: Phil B Date: Mon, 6 Nov 2023 22:43:05 -0600 Subject: [PATCH] Readme: Fix model used in example (#67) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bf9c731..6f74127 100644 --- a/README.md +++ b/README.md @@ -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!'], ],