diff options
author | jgart <[email protected]> | 2025-01-19 17:14:47 +0100 |
---|---|---|
committer | jgart <[email protected]> | 2025-01-19 21:40:52 -0600 |
commit | d3b5ff11ec01d564cfa7dd65a6962c4670d2f221 (patch) | |
tree | b04e677f124f53246aac511a940a8078c2dc67fa | |
parent | 16eda2a3ade0b9693ad8acc8327b471722bd1c73 (diff) |
gnu: Add emacs-gptel-quick.
* gnu/packages/emacs-xyz.scm (emacs-gptel-quick): New variable.
Signed-off-by: jgart <[email protected]>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 88678ada1d..36cad3a7df 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -589,6 +589,30 @@ just one-off queries and multiple independent sessions. It requires an OpenAI API key.") (license license:gpl3+))) +(define-public emacs-gptel-quick + (let ((commit "79c33058e605b4fbdb1d1f98d1ab428d6eed111d") + (revision "0")) + (package + (name "emacs-gptel-quick") + (version (git-version "0.0.5" revision commit)) + (source + (origin + (uri (git-reference + (url "https://github.com/karthink/gptel-quick") + (commit commit))) + (method git-fetch) + (sha256 + (base32 "0bw3zjpzyc574jw2qr0j042x68llkjxn66gkfnw7dwwpgwplz671")) + (file-name (git-file-name name version)))) + (build-system emacs-build-system) + (propagated-inputs (list emacs-gptel)) + (home-page "https://github.com/karthink/gptel-quick") + (synopsis "Quick LLM lookups in Emacs") + (description + "This package provides a tiny everyday helper for easily looking up or +summarizing text using an LLM.") + (license license:gpl3+)))) + (define-public emacs-chatgpt-shell (package (name "emacs-chatgpt-shell") |