mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add emacs-ellama.
* gnu/packages/emacs-xyz.scm (emacs-ellama): New variable. Change-Id: I47bf40971adca845aa132d08f59cd083154bec0e Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
1b6f231c51
commit
73818c254b
1 changed files with 25 additions and 0 deletions
|
@ -4998,6 +4998,31 @@ (define-public emacs-elf-mode
|
|||
that the binary uses instead of the actual binary contents.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-ellama
|
||||
(package
|
||||
(name "emacs-ellama")
|
||||
(version "0.9.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/s-kostyaev/ellama")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256 (base32
|
||||
"1nwwqvl91c65r45yxa2dcl4a41r3ahw6294h79riya48nrp8kn54"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs (list emacs-dash emacs-llm emacs-spinner))
|
||||
(home-page "https://github.com/s-kostyaev/ellama")
|
||||
(synopsis "Tool for interacting with LLMs")
|
||||
(description
|
||||
"Ellama is a tool for interacting with large language models from Emacs.
|
||||
It allows you to ask questions and receive responses from the LLMs. Ellama
|
||||
can perform various tasks such as translation, code review, summarization,
|
||||
enhancing grammar/spelling or wording and more through the Emacs interface.
|
||||
Ellama natively supports streaming output, making it effortless to use with
|
||||
your preferred text editor.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-org-fc
|
||||
(package
|
||||
(name "emacs-org-fc")
|
||||
|
|
Loading…
Reference in a new issue