Sync ollama docs from 82f905cd on 2026-07-12

This commit is contained in:
The Librarian
2026-07-12 04:00:08 +00:00
parent 70feb5e845
commit 6d510760b7
24 changed files with 1013 additions and 314 deletions
+2 -2
View File
@@ -16,9 +16,9 @@ Use this capability to audit model steps, animate the model *thinking* in a UI,
## Enable thinking in API calls
Set the `think` field on chat or generate requests. Most models accept booleans (`true`/`false`).
Set the `think` field on chat or generate requests. Most models accept booleans (`true`/`false`) or levels (`low`, `medium`, `high`, `max`), where `max` requests the highest thinking level.
GPT-OSS instead expects one of `low`, `medium`, or `high` to tune the trace length.
GPT-OSS instead expects one of `low`, `medium`, or `high` to tune the trace length.
The `message.thinking` (chat endpoint) or `thinking` (generate endpoint) field contains the reasoning trace while `message.content` / `response` holds the final answer.