From 7c42f470189692a63aee18ff500ecfb5a03fa5f5 Mon Sep 17 00:00:00 2001 From: Adekunle Date: Thu, 3 Jul 2025 23:37:48 +0100 Subject: [PATCH] Moves model to 4o-mini as it is cheaper and typically better than 3.5 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8434328..3d6e4d3 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Finally, you may use the `openai` service to access the OpenAI API: ```php $result = $container->get('openai')->completions()->create([ - 'model' => 'gpt-3.5-turbo-instruct', + 'model' => 'gpt-4o-mini', 'prompt' => 'PHP is', ]);