summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--epistemia/packages/emacs.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/epistemia/packages/emacs.scm b/epistemia/packages/emacs.scm
index fb11355..2acbac7 100644
--- a/epistemia/packages/emacs.scm
+++ b/epistemia/packages/emacs.scm
@@ -197,3 +197,27 @@ for writing LLM ineractions that suit your workflow. See `gptel-request', and
197 (synopsis "cryptography-agnostic emacs secrets manager") 197 (synopsis "cryptography-agnostic emacs secrets manager")
198 (description "This package provides an easy way to manage secrets via M-x kasi.") 198 (description "This package provides an easy way to manage secrets via M-x kasi.")
199 (license license:gpl3))) 199 (license license:gpl3)))
200
201(define-public emacs-llm-tools
202 (package
203 (name "emacs-llm-tools")
204 (version "1.0")
205 (source
206 (origin
207 (method git-fetch)
208 (uri (git-reference
209 (url "https://git.vineetk.net/llm-tools.el")
210 (commit (string-append "v" version))))
211 (file-name (git-file-name name version))
212 (sha256
213 (base32 "0zx0wkdpbabhfc1qjm78c5121v3y39njf9yz9466vz5pw8gxq9s7"))))
214 (build-system emacs-build-system)
215 (inputs (list emacs-gptel-new
216 emacs-magit))
217 (arguments
218 '(#:include '("^[^/]*.el$")
219 #:exclude '("^[^/]*.sh$")))
220 (home-page "https://git.vineetk.net/kasi.el")
221 (synopsis "cryptography-agnostic emacs secrets manager")
222 (description "This package provides an easy way to manage secrets via M-x kasi.")
223 (license license:gpl3)))