14,985
edits
| Line 19: | Line 19: | ||
Root Cause: Incorrect `messages` format. The API expects an array format, but a single object was being sent. | Root Cause: Incorrect `messages` format. The API expects an array format, but a single object was being sent. | ||
Incorrect Format: ❌ This is an object | Incorrect Format in PHP: ❌ This is an object | ||
<pre> | <pre> | ||
'messages' => ['role' => 'user', 'content' => $message] | 'messages' => ['role' => 'user', 'content' => $message] | ||