summaryrefslogtreecommitdiff
path: root/.config/doom/config.el
diff options
context:
space:
mode:
authorRoger Gonzalez <roger@rogs.me>2024-09-04 17:22:07 -0300
committerRoger Gonzalez <roger@rogs.me>2024-09-04 17:22:07 -0300
commit9b502052d3c8cfef061ed0ed2456fe02ac9f0d2f (patch)
treebf673baaaa55b3ec485951e7e6f4aa2995eba53b /.config/doom/config.el
parent44852f4d927b8786012ace85f7db3dbafca87833 (diff)
Improved GPT features in EmacsHEADmaster
Diffstat (limited to '.config/doom/config.el')
-rw-r--r--.config/doom/config.el15
1 files changed, 13 insertions, 2 deletions
diff --git a/.config/doom/config.el b/.config/doom/config.el
index d86b6492..9d67a4d2 100644
--- a/.config/doom/config.el
+++ b/.config/doom/config.el
@@ -346,9 +346,20 @@ text and copying to the killring."
(add-hook 'magit-mode-hook (lambda () (magit-delta-mode +1)))
-(setq chatgpt-shell-model-version "gpt-4-1106-preview")
+(setq chatgpt-shell-model-version "gpt-4o")
(setq chatgpt-shell-streaming "t")
(setq chatgpt-shell-system-prompt "You are a senior developer knowledgeable in every programming language")
+(setq chatgpt-shell-openai-key openai-key)
+(setq dall-e-shell-openai-key openai-key)
+
+(require 'llm-openai)
+(setq magit-gptcommit-llm-provider (make-llm-openai :key openai-key))
+(setq llm-warn-on-nonfree nil)
+
+(after! magit
+ (magit-gptcommit-mode 1)
+ (setq magit-gptcommit-prompt "You are an expert programmer writing a commit message. You went over every file diff that was changed in it. Summarize the commit into a single specific and cohesive theme. Remember to write in only one line, no more than 50 characters. Write your response using the imperative tense following the kernel git commit style guide. Write a high level title. THE FILE DIFFS:```%s```. Now write Commit message in follow template: [one line of summary]")
+ (magit-gptcommit-status-buffer-setup))
(use-package! copilot
:hook (prog-mode . copilot-mode)
@@ -368,4 +379,4 @@ text and copying to the killring."
(setq org-babel-default-header-args:plantuml
'((:results . "verbatim") (:exports . "results") (:cache . "no")))
(after! org
-(add-to-list 'org-src-lang-modes '("plantuml" . plantuml)))
+ (add-to-list 'org-src-lang-modes '("plantuml" . plantuml)))