diff options
| author | Milan Glacier <dev@milanglacier.com> | 2026-04-29 14:14:25 -0400 |
|---|---|---|
| committer | Milan Glacier <dev@milanglacier.com> | 2026-04-29 14:14:25 -0400 |
| commit | e3258cf10a61322becf5725ac371bd6565beb6b4 (patch) | |
| tree | ff75e3f289eb89b795b1431fc103db54d572af7e | |
| parent | 053683c3a7c7693fcf8234b3928c586efeabc8f4 (diff) | |
doc: update README.externals/minuet
| -rw-r--r-- | README.md | 19 |
1 files changed, 10 insertions, 9 deletions
@@ -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> |
