Skip to content

Commit

Permalink
Merge pull request #15 from dej4vu/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
dej4vu authored Oct 1, 2024
2 parents 6d95b08 + 325a966 commit 67fa0de
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
(require 'init-llm)
(require 'init-csv)
(require 'init-lua)
(require 'init-json)

(when (file-exists-p custom-file)
(load custom-file))
Expand Down
4 changes: 4 additions & 0 deletions lisp/init-json.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
;; json mode
(use-package json-mode)

(provide 'init-json)
4 changes: 2 additions & 2 deletions lisp/init-llm.el
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
:defer t
:init
(setq
gptel-model "qwen2:7b"
gptel-model "qwen2.5:7b"
gptel-backend (gptel-make-ollama "Ollama"
:host "localhost:11434"
:stream t
:models '("qwen2:7b")))
:models '("qwen2.5:7b")))
:config
(setq gptel-api-key "your key")
(setq gptel-log-level 'debug)
Expand Down

0 comments on commit 67fa0de

Please sign in to comment.