Revamp, made lauretta suite, fixed things. broke others.

This commit is contained in:
2025-11-27 00:17:50 +02:00
parent 609435b164
commit 875fdd4bd5
6 changed files with 18 additions and 13 deletions
+3 -3
View File
@@ -16,14 +16,14 @@
(use-package gptel
:config
(setq
gptel-model 'openai/gpt-oss-120b
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)))
:models '("openai/gpt-oss-120b")))
:hook
(gptel-mode . (lambda ()
(setq-local whitespace-style '(face tabs trailing tab-mark
@@ -56,5 +56,5 @@
#+begin_src emacs-lisp
(provide 'azos-emacs-lauretta)
(add-hook 'after-init-hook (lambda () (require 'azos-emacs-lauretta)))
;; (add-hook 'after-init-hook (lambda () (require 'azos-emacs-lauretta)))
#+end_src