[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/ellama 2f50f06436 8/9: Merge pull request #126 from s-k
From: |
ELPA Syncer |
Subject: |
[elpa] externals/ellama 2f50f06436 8/9: Merge pull request #126 from s-kostyaev/add-file-quote |
Date: |
Sun, 9 Jun 2024 09:58:02 -0400 (EDT) |
branch: externals/ellama
commit 2f50f06436de0e7a56bbbc169315bba9b89ab208
Merge: adc61bb51d f0e03b3a4f
Author: Sergey Kostyaev <s-kostyaev@users.noreply.github.com>
Commit: GitHub <noreply@github.com>
Merge pull request #126 from s-kostyaev/add-file-quote
Add file quote context elements
---
ellama.el | 61 +++++++++++++++++++++++++++++++++++++++++++++++++---
tests/test-ellama.el | 37 +++++++++++++++++++++++++++++++
2 files changed, 95 insertions(+), 3 deletions(-)
diff --git a/ellama.el b/ellama.el
index f6417df955..12fcf0a9de 100644
--- a/ellama.el
+++ b/ellama.el
@@ -998,6 +998,39 @@ If EPHEMERAL non nil new session will not be associated
with any file."
(ellama--translate-string name)
name)))))
+;; File quote context elements
+
+(defclass ellama-context-element-file-quote (ellama-context-element)
+ ((path :initarg :path :type string)
+ (content :initarg :content :type string))
+ "A structure for holding information about a context element.")
+
+(cl-defmethod ellama-context-element-extract
+ ((element ellama-context-element-file-quote))
+ "Extract the content of the context ELEMENT."
+ (oref element content))
+
+(cl-defmethod ellama-context-element-format
+ ((element ellama-context-element-file-quote) (mode (eql 'markdown-mode)))
+ "Format the context ELEMENT for the major MODE."
+ (ignore mode)
+ (with-slots (path content) element
+ (if ellama-show-quotes
+ (format "[%s](%s):\n%s\n\n"
+ path path
+ (ellama--md-quote content))
+ (format "[%s](%s)" path path))))
+
+(cl-defmethod ellama-context-element-format
+ ((element ellama-context-element-file-quote) (mode (eql 'org-mode)))
+ "Format the context ELEMENT for the major MODE."
+ (ignore mode)
+ (with-slots (path content) element
+ (if ellama-show-quotes
+ (format "[[%s][%s]]:\n#+BEGIN_QUOTE\n%s\n#+END_QUOTE\n" path path
content)
+ (format "[[%s][%s]]" path path))))
+
+
;;;###autoload
(defun ellama-context-add-file ()
"Add file to context."
@@ -1006,6 +1039,28 @@ If EPHEMERAL non nil new session will not be associated
with any file."
(element (ellama-context-element-file :name file-name)))
(ellama-context-element-add element)))
+(defun ellama-context-add-file-quote-noninteractive (path content)
+ "Add file with PATH quote CONTENT to context."
+ (let ((element (ellama-context-element-file-quote
+ :path path :content content)))
+ (ellama-context-element-add element)))
+
+;;;###autoload
+(defun ellama-context-add-file-quote ()
+ "Add file quote to context interactively."
+ (interactive)
+ (let ((path (buffer-file-name (current-buffer)))
+ (content (if (region-active-p)
+ (buffer-substring-no-properties
+ (region-beginning)
+ (region-end))
+ (buffer-substring-no-properties
+ (point-min)
+ (point-max)))))
+ (if (not path)
+ (warn "should be called from buffer associated with file")
+ (ellama-context-add-file-quote-noninteractive path content))))
+
;;;###autoload
(defun ellama-context-add-buffer (buf)
"Add BUF to context."
@@ -1031,7 +1086,7 @@ If EPHEMERAL non nil new session will not be associated
with any file."
(ellama-context-element-add element)))
(defun ellama-context-add-info-node-quote-noninteractive (name content)
- "Add webpage with NAME quote CONTENT to context."
+ "Add info node with NAME quote CONTENT to context."
(let ((element (ellama-context-element-info-node-quote
:name name :content content)))
(ellama-context-element-add element)))
@@ -1052,7 +1107,7 @@ If EPHEMERAL non nil new session will not be associated
with any file."
(warn "should be called from `info' buffer")
(ellama-context-add-info-node-quote-noninteractive name content))))
-(defun ellama-context-add-webpage-quote (name url content)
+(defun ellama-context-add-webpage-quote-noninteractive (name url content)
"Add webpage with NAME and URL quote CONTENT to context."
(let ((element (ellama-context-element-webpage-quote
:name name :url url :content content)))
@@ -1072,7 +1127,7 @@ If EPHEMERAL non nil new session will not be associated
with any file."
(buffer-substring-no-properties
(point-min)
(point-max)))))
- (ellama-context-add-webpage-quote name url content))
+ (ellama-context-add-webpage-quote-noninteractive name url content))
(warn "Should be called from `eww'.")))
(defun ellama--translate-string (s)
diff --git a/tests/test-ellama.el b/tests/test-ellama.el
index f208983da1..3b10950c81 100644
--- a/tests/test-ellama.el
+++ b/tests/test-ellama.el
@@ -141,6 +141,39 @@
(should (equal
"[[(emacs)Top][(emacs)Top]]:\n#+BEGIN_QUOTE\n1\n\n2\n#+END_QUOTE\n"
(ellama-context-element-format element 'org-mode)))))
+(ert-deftest test-ellama-context-element-format-file-quote-disabled-markdown ()
+ (let ((element (ellama-context-element-file-quote :path "/tmp/test.txt"
:content "1\n\n2"))
+ (ellama-show-quotes nil))
+ (should (equal "[/tmp/test.txt](/tmp/test.txt)"
(ellama-context-element-format element 'markdown-mode)))))
+
+(ert-deftest test-ellama-context-element-format-file-quote-enabled-markdown ()
+ (let ((element (ellama-context-element-file-quote :path "/tmp/test.txt"
:content "1\n\n2"))
+ (ellama-show-quotes t))
+ (should (equal "[/tmp/test.txt](/tmp/test.txt):
+> 1
+>
+> 2
+
+"
+ (ellama-context-element-format element 'markdown-mode)))))
+
+(ert-deftest test-ellama-context-element-format-file-quote-disabled-org-mode ()
+ (let ((element (ellama-context-element-file-quote :path "/tmp/test.txt"
:content "1\n\n2"))
+ (ellama-show-quotes nil))
+ (should (equal "[[/tmp/test.txt][/tmp/test.txt]]"
(ellama-context-element-format element 'org-mode)))))
+
+(ert-deftest test-ellama-context-element-format-file-quote-enabled-org-mode ()
+ (let ((element (ellama-context-element-file-quote :path "/tmp/test.txt"
:content "1\n\n2"))
+ (ellama-show-quotes t))
+ (should (equal "[[/tmp/test.txt][/tmp/test.txt]]:
+#+BEGIN_QUOTE
+1
+
+2
+#+END_QUOTE
+"
+ (ellama-context-element-format element 'org-mode)))))
+
(ert-deftest test-ellama-context-element-extract-buffer ()
(with-temp-buffer
(insert "123")
@@ -169,6 +202,10 @@
(let ((element (ellama-context-element-info-node-quote :content "123")))
(should (equal "123" (ellama-context-element-extract element)))))
+(ert-deftest test-ellama-context-element-extract-file-quote ()
+ (let ((element (ellama-context-element-file-quote :content "123")))
+ (should (equal "123" (ellama-context-element-extract element)))))
+
(ert-deftest test-ellama-md-to-org-code-simple ()
(let ((result (ellama--translate-markdown-to-org-filter "Here is your TikZ
code for a blue rectangle:
```tex
- [elpa] externals/ellama updated (361e1aa265 -> 3d6192ea09), ELPA Syncer, 2024/06/09
- [elpa] externals/ellama fc8c9dc2e7 5/9: Merge pull request #125 from s-kostyaev/add-info-node-quote, ELPA Syncer, 2024/06/09
- [elpa] externals/ellama adc61bb51d 6/9: Bump version, ELPA Syncer, 2024/06/09
- [elpa] externals/ellama 4e1db4a155 4/9: Add info node quote context elements, ELPA Syncer, 2024/06/09
- [elpa] externals/ellama 1e2631312f 1/9: Copy context from previous session on creating new session, ELPA Syncer, 2024/06/09
- [elpa] externals/ellama f0e03b3a4f 7/9: Add file quote context elements, ELPA Syncer, 2024/06/09
- [elpa] externals/ellama 2f50f06436 8/9: Merge pull request #126 from s-kostyaev/add-file-quote,
ELPA Syncer <=
- [elpa] externals/ellama 3d6192ea09 9/9: Bump version, ELPA Syncer, 2024/06/09
- [elpa] externals/ellama e527fdb843 2/9: Merge pull request #124 from s-kostyaev/fix-new-session-context, ELPA Syncer, 2024/06/09
- [elpa] externals/ellama 60909fe578 3/9: Bump version, ELPA Syncer, 2024/06/09