diff options
author | Thanos Apollo <[email protected]> | 2024-07-29 19:25:27 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-07-29 19:25:27 +0300 |
commit | b0b45b49e0eb4b939a833c7e151f9dd3fc893b47 (patch) | |
tree | 6ed8f9794c6c88e46952467c43b5ce8c58af13fc /.config/emacs/init.el | |
parent | ab031280c769846371a43dec27f0f16bb30b8dd8 (diff) |
emacs: gptel: Add & default to llama3.1.
Diffstat (limited to '.config/emacs/init.el')
-rw-r--r-- | .config/emacs/init.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index ea95ff8..0862ad2 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -976,12 +976,12 @@ By default, returns all jabber related buffers format." (code-review . "You are an expert programmer within Emacs reviewing code. Respond concisely") (writer . "You are an expert writer and FOSS enthusiast. Improve only the article sections provided as a hacker, do not add extra paragraphs."))) - (setq-default gptel-model "dolphin-llama3:latest") + (setq-default gptel-model "llama3.1:latest") (setq gptel-backend (gptel-make-ollama "Ollama" :host (if is-zeus "localhost:11434" "zeus:11434") :stream t - :models '("dolphin-llama3:latest" "zephyr:latest" "llama3:latest" + :models '("llama3.1:latest" "dolphin-llama3:latest" "zephyr:latest" "mistral:latest" "mixtral:8x22b" "neural-chat:latest" "dolphin-mixtral:latest" "phi"))) :bind (("C-c g" . 'gptel-send) |