diff options
Diffstat (limited to '.config/emacs/modules/bd--chat.el')
-rw-r--r-- | .config/emacs/modules/bd--chat.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/emacs/modules/bd--chat.el b/.config/emacs/modules/bd--chat.el index dc093f4..62ab2bb 100644 --- a/.config/emacs/modules/bd--chat.el +++ b/.config/emacs/modules/bd--chat.el @@ -60,13 +60,13 @@ channel, which is issuing the PART command." (use-package gptel :bind (("C-c g" . gptel-menu) - ("C-c C-t" . (lambda () (interactive) (gptel "*evka*") (switch-to-buffer "*evka*")))) + ("C-c C-k" . (lambda () (interactive) (gptel "*evka*") (switch-to-buffer "*evka*")))) :config (defvar bd/llama-cpp-buffer-name "*llama-cpp-proc*") (defvar bd/llama-cpp-reasoning-buffer-name "*llama-cpp-reasoning*") (defvar bd/llama-cpp-port "4568") (defvar bd/llama-cpp-threads "8") - (defvar bd/llama-cpp-model-file "Qwen3-4B.Q5_K_M.gguf") + (defvar bd/llama-cpp-model-file "Qwen3-8B.Q4_K_M.gguf") ;; most models seem to ignore this, or llama-cpp doesn't add /no_think like it's supposed to (defvar bd/llama-cpp-reasoning-budget nil) (defun bd/gptel-start-backend () @@ -101,7 +101,7 @@ channel, which is issuing the PART command." (bd/gptel-start-backend) (add-to-list 'gptel-directives - '(evka . "You are a wolf (furry) named Evka hired as a secretary to complete language-based tasks. First describe an action your character does, e.x.: *I tap my claws on the desk*. Finish by responding to the task as tersely as possible, in character./no_think")) + '(evka . "You are a wolf (furry) named Evka hired as a secretary to complete language-based tasks. First describe an action your character does, e.x.: *I tap my claws on the desk*. Finish by responding to the task tersely, in character./no_think")) (setopt gptel-model 'qwen-4b gptel-backend (gptel-make-openai "llama-cpp" |