summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilan Glacier <dev@milanglacier.com>2026-04-29 14:14:25 -0400
committerMilan Glacier <dev@milanglacier.com>2026-04-29 14:14:25 -0400
commite3258cf10a61322becf5725ac371bd6565beb6b4 (patch)
treeff75e3f289eb89b795b1431fc103db54d572af7e
parent053683c3a7c7693fcf8234b3928c586efeabc8f4 (diff)
doc: update README.externals/minuet
-rw-r--r--README.md19
1 files changed, 10 insertions, 9 deletions
diff --git a/README.md b/README.md
index b52a77b..612d085 100644
--- a/README.md
+++ b/README.md
@@ -837,20 +837,21 @@ request timeout from outputing too many tokens.
(minuet-set-optional-options minuet-openai-compatible-options :top_p 0.9)
```
-**Disabling thinking for reasoning models:** | Provider | Configuration | |
--------------------- |
--------------------------------------------------------------------------- | |
-**OpenRouter** | `reasoning = { effort = 'none' }` (or `'minimal'`, depending on
-the model) | | **DeepSeek API** | `thinking = { type = 'disabled' }` | |
-**Various Provider** | `reasoning_effort = 'none'` |
+**Disabling thinking for reasoning models:**
+
+| Provider | Configuration |
+| -------------------- | -------------------------------------------------------------------------- |
+| **OpenRouter** | `reasoning = { effort = 'none' }` (or `'minimal'`, depending on the model) |
+| **DeepSeek API** | `thinking = { type = 'disabled' }` |
+| **Various Provider** | `reasoning_effort = 'none'` |
````lisp
-(minuet-set-optional-options minuet-openai-compatible-options :reasoning '(:effort none))
;; or "minimal", depending on the model (OpenRouter)
+(minuet-set-optional-options minuet-openai-compatible-options :reasoning '(:effort none))
+;; or "minimal", depending on the model (various providers)
(minuet-set-optional-options minuet-openai-compatible-options :reasoning_effort "none")
-;; or "minimal", depending on the model (various providers)```
-(minuet-set-optional-options minuet-openai-compatible-options :thinking '(:type "disabled"))
;; DeepSeek API
+(minuet-set-optional-options minuet-openai-compatible-options :thinking '(:type "disabled"))
````
</details>