From: Svjatoslav Agejenko Date: Tue, 2 Dec 2025 20:17:54 +0000 (+0200) Subject: Update default and example configuration values for `temperature`, `top_p`, `top_k... X-Git-Url: http://www2.svjatoslav.eu/gitweb/?a=commitdiff_plain;h=5967d48ea6e60e0d700506f9ea5eb951e927f5ec;p=alyverkko-cli.git Update default and example configuration values for `temperature`, `top_p`, `top_k`, and `min_p`. --- diff --git a/doc/index.org b/doc/index.org index 9baf5ee..aec64ac 100644 --- a/doc/index.org +++ b/doc/index.org @@ -442,8 +442,10 @@ file. Below is an example of how the configuration file might look: - alias: "default" filesystem_path: "model.gguf" context_size_tokens: 64000 - temperature: 0.8 - top_p: 0.9 + temperature: 0.6 + top_p: 0.95 + top_k: 20 + min_p: 0 repeat_penalty: 1.1 - alias: "mistral" @@ -496,9 +498,9 @@ Each skill file contains: #+begin_src yaml prompt: "Full system prompt text here" temperature: 0.8 # Optional - top_p: 0.9 # Optional - top_k: 0.5 # Optional - min_p: 0.5 # Optional + top_p: 0.95 # Optional + top_k: 20 # Optional + min_p: 0 # Optional repeat_penalty: 1.1 # Optional #+end_src