s-kostyaev / ellama

Ellama is a tool for interacting with large language models from Emacs.
GNU General Public License v3.0
359 stars 25 forks source link

ellama-nick-prefix is now configurable. #48

Closed stephenwithav closed 5 months ago

stephenwithav commented 6 months ago

ellama-nick-prefix defaults to "##".

ellama-buffer-mode lets you choose the major mode for ellama interactions, but switching it from markdown-mode to org-mode doesn't help much because there's no syntax highlighting.

Changing ellama-nick-prefix to "**" provides a more natural interface for Org lovers.

Using ellama-user-nick-prefix and ellama-assistant-nick-prefix may be preferred.

Potential use case:

(setq ellama-user-nick-prefix "**")
(setq ellama-assistant-nick-prefix "***")

This would ease scanning.

s-kostyaev commented 5 months ago

@stephenwithav Thank you for contribution