From 9c64e97d8b96b6f24e249954c05d6157a4e89585 Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Thu, 6 Nov 2025 15:47:30 -0700 Subject: [PATCH] docs: Improved the documentation of the behavior-related settings of the global configuration file example --- config.example.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.example.yaml b/config.example.yaml index b09ee5b..b4c729d 100644 --- a/config.example.yaml +++ b/config.example.yaml @@ -4,12 +4,12 @@ temperature: null # Set default temperature parameter (0, 1) top_p: null # Set default top-p parameter, with a range of (0, 1) or (0, 2) depending on the model # ---- Behavior ---- -stream: true # Controls whether to use the stream-style API. -save: true # Indicates whether to persist the message +stream: true # Controls whether to use the stream-style APIs when querying for completions from clients. +save: true # Indicates whether to persist the conversation to messages.md for posterity keybindings: emacs # Choose keybinding style (emacs, vi) -editor: null # Specifies the command used to edit input buffer or session. (e.g. vim, emacs, nano). +editor: null # Specifies the editor used to edit the input buffer or session. (e.g. vim, emacs, nano, hx). Defaults to $EDITOR wrap: no # Controls text wrapping (no, auto, ) -wrap_code: false # Enables or disables wrapping of code blocks +wrap_code: false # Enables or disables the wrapping of code blocks vault_password_file: null # Path to a file containing the password for the Loki vault (cannot be a secret template) # ---- Function Calling ----