diff options
-rw-r--r-- | config/doom/config.org | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/config/doom/config.org b/config/doom/config.org index 8ced80f..6a8548e 100644 --- a/config/doom/config.org +++ b/config/doom/config.org @@ -130,11 +130,23 @@ Because I always need help and it should come up quickly :commands (ai-query-request)) #+end_src +#+begin_src emacs-lisp :tangle "packages.el" +(package! gptel) +#+end_src +#+begin_src emacs-lisp +(use-package! gptel + :config + (gptel-make-ollama "Ollama" ;Any name of your choosing + :host "localhost:11434" ;Where it's running + :stream t ;Stream responses + :models '(llama3.2:latest)) ;List of models + ) +#+end_src ** Track Deliveries #+begin_src emacs-lisp (use-package! delivery-track :load-path "~/dev/dotfiles/elisp/" - :commands (delivery-track-update-dhl)) + :commands (delivery-track-update)) #+end_src ** Fixes #+begin_src emacs-lisp |