1
0
Fork 0

Remove the kagi-fastgpt-prompt-synonym command

It's rather specific, it's up to the user to add it.

There is one example, kagi-fastgpt-prompt-definition, which should be sufficient.
This commit is contained in:
Bram Schoenmakers 2024-04-10 17:59:39 +02:00
parent 9dc6eaf7ca
commit 989f3816e9
Signed by: bram
GPG key ID: 0CCD19DFDC63258F
2 changed files with 1 additions and 6 deletions

View file

@ -31,7 +31,6 @@ kagi.el has some functions that use FastGPT to perform certain operations on tex
- =kagi-translate= :: Translates strings or complete buffers to another language (including programming languages).
- =kagi-proofread= :: Proofread a string or buffer.
- =kagi-fastgpt-prompt-definition= :: Returns the definition of a word.
- =kagi-fastgpt-prompt-synonym= :: Returns a synonym for a word.
** Universal Summarizer
@ -217,9 +216,8 @@ Needless to say, the tests won't make actual API calls. Otherwise it wouldn't be
- The =define-kagi-fastgpt-prompt= macro allows you to define your own prompts, that may contain a placeholder to fill in relevant text.
- The macro is used to define two new commands:
- The macro is used to (re)define commands:
- =kagi-fastgpt-prompt-definition=: Define the a word.
- =kagi-fastgpt-prompt-synonym=: Find a synonym of a word.
- =kagi-proofread= is now defined with the macro.
- =kagi-summarize= has a =no-cache= parameter to opt out from caching at Kagi's side.

View file

@ -496,9 +496,6 @@ string (suitable for invocations from Emacs Lisp)."
(define-kagi-fastgpt-prompt kagi-fastgpt-prompt-definition
"Define the following word: %s"
"Definition")
(define-kagi-fastgpt-prompt kagi-fastgpt-prompt-synonym
"Find synonyms for the following word: %s"
"Synonym")
(defun kagi--read-language (prompt)
"Read a language from the minibuffer interactively.