Compare commits

..

No commits in common. "00c1b131f8f7cc0e67422f43287f41eee3ff5d84" and "5b426cd534e856fb473bff0605c0a916bd8f488d" have entirely different histories.

2 changed files with 18 additions and 1 deletions

1
.gitignore vendored
View file

@ -79,4 +79,3 @@ projects
/lisp/
/work/
/multisession/
/forge-database.sqlite

View file

@ -2879,6 +2879,24 @@ The following function from him takes care of the other way: bringing a message
(global-set-key (kbd "C-c M-m") 'mmk2410/convert-mail-header-to-org-link)
#+end_src
* LLM
#+begin_src emacs-lisp
(use-package chatgpt-shell
:config
(setq chatgpt-shell-models
'(((:provider . "Ollama")
(:label . "Ollama")
(:version . "mistral:latest")
(:short-version . "mistral")
(:token-width . 3)
(:context-window . 131072)
(:handler . chatgpt-shell-ollama--handle-ollama-command)
(:filter . chatgpt-shell-ollama--extract-ollama-response)
(:payload . chatgpt-shell-ollama-make-payload)
(:url . chatgpt-shell-ollama--make-url)))))
#+end_src
* Helpers
** Tab Bar Setup