GNU ELPA - ellama

ellama

Description
Tool for interacting with LLMs
Latest
ellama-0.9.1.tar (.sig), 2024-Apr-15, 140 KiB
Maintainer
Sergey Kostyaev <sskostyaev@gmail.com>
Atom feed
ellama.xml
Website
http://github.com/s-kostyaev/ellama
Browse ELPA's repository
CGit or Gitweb
Badge

To install this package from Emacs, use package-install or list-packages.

Full description

1. Ellama

license-GPL_3-green.svg ellama-badge.svg ellama-badge.svg ellama.svg

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.

The name "ellama" is derived from "Emacs Large LAnguage Model Assistant". Previous sentence was written by Ellama itself.

1.1. Installation

Just M-x package-install Enter ellama Enter. By default it uses ollama provider and zephyr model. If you ok with it, you need to install ollama and pull zephyr like this:

ollama pull zephyr

You can use ellama with other model or other llm provider. In that case you should customize ellama configuration like this:

;; YOU DON'T NEED NONE OF THIS CODE FOR SIMPLE INSTALL
;; IT IS AN EXAMPLE OF CUSTOMIZATION.
(use-package ellama
  :init
  ;; setup key bindings
  (setopt ellama-keymap-prefix "C-c e")
  ;; language you want ellama to translate to
  (setopt ellama-language "German")
  ;; could be llm-openai for example
  (require 'llm-ollama)
  (setopt ellama-provider
		  (make-llm-ollama
		   ;; this model should be pulled to use it
		   ;; value should be the same as you print in terminal during pull
		   :chat-model "mistral:7b-instruct-v0.2-q6_K"
		   :embedding-model "mistral:7b-instruct-v0.2-q6_K"))
  ;; Predefined llm providers for interactive switching.
  ;; You shouldn't add ollama providers here - it can be selected interactively
  ;; without it. It is just example.
  (setopt ellama-providers
		  '(("zephyr" . (make-llm-ollama
				 :chat-model "zephyr:7b-beta-q6_K"
				 :embedding-model "zephyr:7b-beta-q6_K"))
		    ("mistral" . (make-llm-ollama
				  :chat-model "mistral:7b-instruct-v0.2-q6_K"
				  :embedding-model "mistral:7b-instruct-v0.2-q6_K"))
		    ("mixtral" . (make-llm-ollama
				  :chat-model "mixtral:8x7b-instruct-v0.1-q3_K_M-4k"
				  :embedding-model "mixtral:8x7b-instruct-v0.1-q3_K_M-4k"))))
  ;; Naming new sessions with llm
  (setopt ellama-naming-provider
	  (make-llm-ollama
	   :chat-model "mistral:7b-instruct-v0.2-q6_K"
	   :embedding-model "mistral:7b-instruct-v0.2-q6_K"))
  (setopt ellama-naming-scheme 'ellama-generate-name-by-llm)
  ;; Translation llm provider
  (setopt ellama-translation-provider (make-llm-ollama
				       :chat-model "sskostyaev/openchat:8k"
				       :embedding-model "nomic-embed-text")))

1.2. Commands

1.2.1. ellama-chat

Ask Ellama about something by entering a prompt in an interactive buffer and continue conversation. If called with universal argument (C-u) will start new session with llm model interactive selection.

1.2.2. ellama-ask-about

Ask Ellama about a selected region or the current buffer.

1.2.3. ellama-ask-selection

Send selected region or current buffer to ellama chat.

1.2.4. ellama-ask-line

Send current line to ellama chat.

1.2.5. ellama-complete

Complete text in current buffer with ellama.

1.2.6. ellama-translate

Ask Ellama to translate a selected region or word at the point.

1.2.7. ellama-translate-buffer

Translate current buffer.

1.2.8. ellama-define-word

Find the definition of the current word using Ellama.

1.2.9. ellama-summarize

Summarize a selected region or the current buffer using Ellama.

1.2.10. ellama-summarize-killring

Summarize text from the kill ring.

1.2.11. ellama-code-review

Review code in a selected region or the current buffer using Ellama.

1.2.12. ellama-change

Change text in a selected region or the current buffer according to a provided change.

1.2.13. ellama-make-list

Create a markdown list from the active region or the current buffer using Ellama.

1.2.14. ellama-make-table

Create a markdown table from the active region or the current buffer using Ellama.

1.2.15. ellama-summarize-webpage

Summarize a webpage fetched from a URL using Ellama.

1.2.16. ellama-provider-select

Select ellama provider.

1.2.17. ellama-code-complete

Complete selected code or code in the current buffer according to a provided change using Ellama.

1.2.18. ellama-code-add

Add new code according to a description, generating it with a provided context from the selected region or the current buffer using Ellama.

1.2.19. ellama-code-edit

Change selected code or code in the current buffer according to a provided change using Ellama.

1.2.20. ellama-code-improve

Change selected code or code in the current buffer according to a provided change using Ellama.

1.2.21. ellama-improve-wording

Enhance the wording in the currently selected region or buffer using Ellama.

1.2.22. ellama-improve-grammar

Enhance the grammar and spelling in the currently selected region or buffer using Ellama.

1.2.23. ellama-improve-conciseness

Make the text of the currently selected region or buffer concise and simple using Ellama.

1.2.24. ellama-make-format

Render the currently selected text or the text in the current buffer as a specified format using Ellama.

1.2.25. ellama-load-session

Load ellama session from file.

1.2.26. ellama-session-remove

Remove ellama session.

1.2.27. ellama-session-switch

Change current active session.

1.2.28. ellama-session-rename

Rename current ellama session.

1.2.29. ellama-context-add-file

Add file to context.

1.2.30. ellama-context-add-buffer

Add buffer to context.

1.2.31. ellama-context-add-selection

Add selected region to context.

1.2.32. ellama-context-add-info-node

Add info node to context.

1.2.33. ellama-chat-translation-enable

Chat translation enable.

1.2.34. ellama-chat-translation-disable

Chat translation disable.

1.3. Keymap

Here is a table of keybindings and their associated functions in Ellama, using the ellama-keymap-prefix prefix (not set by default):

Keymap Function Description
"c c" ellama-code-complete Code complete
"c a" ellama-code-add Code add
"c e" ellama-code-edit Code edit
"c i" ellama-code-improve Code improve
"c r" ellama-code-review Code review
"s s" ellama-summarize Summarize
"s w" ellama-summarize-webpage Summarize webpage
"s c" ellama-summarize-killring Summarize killring
"s l" ellama-load-session Session Load
"s r" ellama-session-rename Session rename
"s d" ellama-session-remove Session delete
"s a" ellama-session-switch Session activate
"i w" ellama-improve-wording Improve wording
"i g" ellama-improve-grammar Improve grammar and spelling
"i c" ellama-improve-conciseness Improve conciseness
"m l" ellama-make-list Make list
"m t" ellama-make-table Make table
"m f" ellama-make-format Make format
"a a" ellama-ask-about Ask about
"a i" ellama-chat Chat (ask interactively)
"a l" ellama-ask-line Ask current line
"a s" ellama-ask-selection Ask selection
"t t" ellama-translate Text translate
"t b" ellama-translate-buffer Translate buffer
"t e" ellama-chat-translation-enable Translation enable
"t d" ellama-chat-translation-disable Translation disable
"t c" ellama-complete Text complete
"d w" ellama-define-word Define word
"x b" ellama-context-add-buffer Context add buffer
"x f" ellama-context-add-file Context add file
"x s" ellama-context-add-selection Context add selection
"x i" ellama-context-add-info-node Context add info node
"p s" ellama-provider-select Provider select

1.4. Configuration

The following variables can be customized for the Ellama client:

  • ellama-enable-keymap: Enable the Ellama keymap.
  • ellama-keymap-prefix: The keymap prefix for Ellama.
  • ellama-user-nick: The user nick in logs.
  • ellama-assistant-nick: The assistant nick in logs.
  • ellama-language: The language for Ollama translation. Default

language is english.

  • ellama-provider: llm provider for ellama. Default provider is

ollama with zephyr model. There are many supported providers: ollama, open ai, vertex, GPT4All. For more information see llm documentation.

  • ellama-providers: association list of model llm providers with name as key.
  • ellama-spinner-type: Spinner type for ellama. Default type is

progress-bar.

  • ellama-ollama-binary: Path to ollama binary.
  • ellama-auto-scroll: If enabled ellama buffer will scroll automatically during generation. Disabled by default.
  • ellama-fill-paragraphs: Option to customize ellama paragraphs filling behaviour.
  • ellama-name-prompt-words-count: Count of words in prompt to generate name.
  • Prompt templates for every command.
  • ellama-chat-done-callback: Callback that will be called on ellama

chat response generation done. It should be a function with single argument generated text string.

  • ellama-nick-prefix-depth: User and assistant nick prefix depth. Default value is 2.
  • ellama-sessions-directory: Directory for saved ellama sessions.
  • ellama-major-mode: Major mode for ellama commands. Org mode by default.
  • ellama-long-lines-length: Long lines length for fill paragraph call. Too low value can break generated code by splitting long comment lines. Default value 100.
  • ellama-session-auto-save: Automatically save ellama sessions if set. Enabled by default.
  • ellama-naming-scheme: How to name new sessions.
  • ellama-naming-provider: LLM provider for generating session names by LLM. If not set ellama-provider will be used.
  • ellama-chat-translation-enabled: Enable chat translations if set.
  • ellama-translation-provider: LLM translation provider. ellama-provider will be used if not set.

1.5. Acknowledgments

Thanks Jeffrey Morgan for excellent project ollama. This project cannot exist without it.

Thanks zweifisch - I got some ideas from ollama.el what ollama client in Emacs can do.

Thanks Dr. David A. Kunz - I got more ideas from gen.nvim.

Thanks Andrew Hyatt for llm library. Without it only ollama would be supported.

2. Contributions

To contribute, submit a pull request or report a bug. This library is part of GNU ELPA; major contributions must be from someone with FSF papers. Alternatively, you can write a module and share it on a different archive like MELPA.

Old versions

ellama-0.9.0.tar.lz2024-Apr-0326.7 KiB
ellama-0.8.13.tar.lz2024-Mar-3125.7 KiB
ellama-0.8.8.tar.lz2024-Feb-2424.7 KiB
ellama-0.8.7.tar.lz2024-Feb-2324.6 KiB
ellama-0.8.5.tar.lz2024-Feb-1924.6 KiB
ellama-0.8.4.tar.lz2024-Feb-1824.3 KiB
ellama-0.8.3.tar.lz2024-Feb-1524.2 KiB
ellama-0.8.2.tar.lz2024-Feb-1324.2 KiB
ellama-0.8.1.tar.lz2024-Feb-1124.1 KiB
ellama-0.7.7.tar.lz2024-Feb-1022.9 KiB
ellama-0.7.6.tar.lz2024-Feb-0422.8 KiB
ellama-0.7.4.tar.lz2024-Feb-0322.7 KiB
ellama-0.7.2.tar.lz2024-Jan-2922.3 KiB
ellama-0.7.1.tar.lz2024-Jan-2222.1 KiB
ellama-0.7.0.tar.lz2024-Jan-2020.3 KiB
ellama-0.6.0.tar.lz2024-Jan-1820.1 KiB
ellama-0.5.7.tar.lz2024-Jan-1618.7 KiB
ellama-0.4.13.tar.lz2023-Dec-2818.0 KiB
ellama-0.4.0.tar.lz2023-Dec-1817.4 KiB
ellama-0.3.2.tar.lz2023-Dec-1816.9 KiB

News

1. Version 0.9.1

  • Add summarize killring command.

2. Version 0.9.0

  • Improve context management. Make it extendable.

3. Version 0.8.14

  • Don't insert blank line on code change actions.

4. Version 0.8.13

  • Simplify switching between org and markdown.

5. Version 0.8.12

  • Construct a local list instead of pushin to global one.

6. Version 0.8.11

  • Remove dash dependency.
  • Remove function ellama--fill-string.
  • Rewrite function ellama--fill-long-lines to use fill-region.
  • Use thread-last instead of ->> from dash.

7. Version 0.8.10

  • Fix context for chat translation.
  • Refactor translations.
  • Add command for current buffer translation.

8. Version 0.8.9

  • Add chat translation.

9. Version 0.8.8

  • Fix some bad markdown to org translations.

10. Version 0.8.7

  • Fix interactive local model selection for emacs 28.

11. Version 0.8.6

  • Add provider to ellama-chat arguments.

12. Version 0.8.5

  • Improve working with context:
    • Fix some org-mode links.
    • Add command for adding info nodes into context.
    • Fix keybindings documentation.

13. Version 0.8.4

  • Fix keybindings. Keymap prefix now not set by default to prevent usage of reserved for end user customisation keys.

14. Version 0.8.3

  • Fix non-chat commands.

15. Version 0.8.2

  • Fix chat on model switching.

16. Version 0.8.1

  • Add naming scheme user option.

17. Version 0.8.0

  • Add context management.

18. Version 0.7.7

  • Apply markdown-to-org filter consistently.

19. Version 0.7.6

  • Eliminate eval call.

20. Version 0.7.5

  • Make ellama-request-mode for cancel active requests.

21. Version 0.7.4

  • Avoid advising global functions. Use minor modes instead.

22. Version 0.7.3

  • Add sessions auto save. If not set will not use named files for new sessions. Enabled by default.
  • ellama-major-mode used instead of ellama-instant-mode and used not only for ellama instant buffers, but also for ellama chat buffers.

23. Version 0.7.2

  • Replace / with _ in new note filenames to prevent errors.

24. Version 0.7.1

  • Improve markdown to org conversion.
  • Move readme from markdown to org.

25. Version 0.7.0

  • Switch from markdown to org-mode.
  • Fix bug in session management on buffer kill.
  • Decrease pressure to garbage collector during text generation.

26. Version 0.6.0

  • Implement session management.

27. Version 0.5.8

  • Fix typo in predefined prompts.

28. Version 0.5.7

  • Add ellama-nick-prefix custom variable.

29. Version 0.5.6

  • Add llm name to generated ellama name.

30. Version 0.5.5

  • Add ellama-chat-done-callback.

31. Version 0.5.4

  • Support interactive switch models on remote host.

32. Version 0.5.3

  • Support cancellation.

33. Version 0.5.2

  • Make default prompt templates customizable.

34. Version 0.5.1

  • Use more meaningful buffer names.

35. Version 0.5.0

  • Eliminate aliases.

36. Version 0.4.14

  • Extract ellama-chat-done to separate function.

37. Version 0.4.13

  • Use custom-set-default in set function for custom variables.

38. Version 0.4.12

  • Add option to customize paragraphs filling behaviour.

39. Version 0.4.11

  • Fix compilation

40. Version 0.4.10

  • Add customization group.
  • Call ellama-setup-keymap on prefix change.

41. Version 0.4.9

  • Call fill-region only for non-programming modes.

42. Version 0.4.8

  • Improve lines wrapping.

43. Version 0.4.7

  • Simplify scroll logic.

44. Version 0.4.6

  • Fix code trimming.

45. Version 0.4.5

  • Refactoring. Eliminate duplicated code.
  • Fix minor bugs with error handling.

46. Version 0.4.4

  • Fix ellama-render interactive spec.

47. Version 0.4.3

  • Fix scrolling during generation.
  • Add auto scrolling for all commands.

48. Version 0.4.2

  • Add auto scrolling. Disabled by default.

49. Version 0.4.1

  • Fix adding and completing code. Do it inline instead of end of buffer.

50. Version 0.4.0

  • Add interactive provider selection.

51. Version 0.3.2

  • Change keymap prefix to prevent default binding overwriting.

52. Version 0.3.1

  • Minor fixes in custom variables.

53. Version 0.3.0

  • Add keymap.

54. Version 0.2.0

  • Move to GNU ELPA.