Troubleshooting of Ollama API: Difference between revisions

Jump to navigation Jump to search
m
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]

Navigation menu