From d36967e371be685ff6a4f9cd975443ac7c517e7f Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Fri, 24 May 2024 01:03:44 -0400 Subject: [PATCH] Minor tweaks --- emacs/.emacs.d/packages/llama/llama.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/emacs/.emacs.d/packages/llama/llama.el b/emacs/.emacs.d/packages/llama/llama.el index 2615d15..6717951 100644 --- a/emacs/.emacs.d/packages/llama/llama.el +++ b/emacs/.emacs.d/packages/llama/llama.el @@ -223,10 +223,10 @@ You have the ability to evaluate Emacs Lisp code. To do so, output the Emacs Lis ((markdown-link-p) (markdown-follow-link-at-point)))) (defun llama-chat-context-action () - "Perform a contextual action in the chat buffer based on the point. + "Perform a contextual action in the chat buffer based on the point: -- follows the link at point -- submits the input if point is at the end of the buffer" + * follows the link at point + * submits the input if point is within the user input zone" (interactive) (cond ((markdown-link-p) (llama-chat-follow-link)) @@ -269,7 +269,7 @@ You have the ability to evaluate Emacs Lisp code. To do so, output the Emacs Lis (pop-to-buffer (llama-chat-buffer "*llama-doctor*" (llm-make-chat-prompt - "Briefly greet the user without mentioning your name and ask how you can help." + "Briefly greet the client without mentioning your name and ask how you can help." :context "You are an empathetic therapist.")))) (keymap-set llama-chat-mode-map "RET" #'llama-chat-context-action)