Reorganize llm stuff

This commit is contained in:
2026-02-26 12:36:23 +02:00
parent 2491b461a4
commit 68d2c50721
4 changed files with 63 additions and 48 deletions
+12 -20
View File
@@ -1,4 +1,4 @@
#+title: Aner's Emacs EXWM Configuration
#+title: Aner's Emacs Lauretta Configuration
#+property: header-args :results silent
* Base setup
@@ -13,25 +13,17 @@
** LLM
#+begin_src emacs-lisp
(use-package gptel
:config
(setq
gptel-model 'openai/gpt-oss-120b
gptel-backend
(gptel-make-openai "Groq"
:host "api.groq.com"
:endpoint "/openai/v1/chat/completions"
:stream t
:key "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"
:models '(openai/gpt-oss-120b)))
:hook
(gptel-mode . (lambda ()
(setq-local whitespace-style '(face tabs trailing tab-mark
indentation))))
)
(use-package gptel-autocomplete
:ensure t)
(setq
gptel-model 'meta/llama-3.1-8b-instant
gptel-backend
(gptel-make-openai "Groq"
:host "api.groq.com"
:endpoint "/openai/v1/chat/completions"
:stream t
:key "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"
:models '('meta/llama-3.1-8b-instant)))
(setq gptel-agent-dirs '("/home/aner/.agents"))
(gptel-agent-update)
#+end_src
** Headphones