Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,22 @@ The above code makes the backend available to select. If you want it to be the
:models '(mistral:latest)))
#+end_src

***** (Optional) Set custom model parameters

Some models come with recommended parameter. To set them use this.
#+begin_src emacs-lisp
;; OPTIONAL configuration
(gptel-make-ollama "Ollama"
:host "localhost:11434"
:stream t
:models '((qwen3:30b
:request-params (:options (:temperature 0.6
:top_p 0.95
:top_k 20
:min_p 0
:num_ctx 131072)))))
#+end_src

#+html: </details>

#+html: <details><summary>
Expand Down