branch: externals/ellama
commit 49593e60fae977726bd70031c2c6c3c8b3320a76
Author: Sergey Kostyaev <[email protected]>
Commit: Sergey Kostyaev <[email protected]>

    Update variable prompt format
    
    Changed the variable prompt format to include curly braces around the 
variable
    name for better clarity.
---
 ellama-community-prompts.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ellama-community-prompts.el b/ellama-community-prompts.el
index 6911d82a7a..3335760dba 100644
--- a/ellama-community-prompts.el
+++ b/ellama-community-prompts.el
@@ -198,7 +198,7 @@ Optional argument FOR-DEVS filters prompts for developers."
   (interactive)
   (let ((vars (ellama-community-prompts-get-variable-list)))
     (dolist (var vars)
-      (let ((value (read-string (format "Enter value for %s: " var))))
+      (let ((value (read-string (format "Enter value for {%s}: " var))))
         (ellama-community-prompts-set-variable var value)))))
 
 (provide 'ellama-community-prompts)

Reply via email to