[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/llm 61db5c3cf8 02/13: Corrected form of comments of hel
From: |
ELPA Syncer |
Subject: |
[elpa] externals/llm 61db5c3cf8 02/13: Corrected form of comments of helper functions. |
Date: |
Wed, 7 Feb 2024 18:58:10 -0500 (EST) |
branch: externals/llm
commit 61db5c3cf8875c10753f757833b797094e39771c
Author: Thomas E. Allen <thomas@assistivemachines.com>
Commit: Thomas E. Allen <thomas@assistivemachines.com>
Corrected form of comments of helper functions.
---
llm-ollama.el | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/llm-ollama.el b/llm-ollama.el
index b4c4fefc24..958851bf5b 100644
--- a/llm-ollama.el
+++ b/llm-ollama.el
@@ -105,10 +105,8 @@ PROVIDER is the llm-ollama provider."
(defun llm-ollama--chat-request-generate (prompt)
"Create the chat request data for the `generate' endpoint.
-
PROMPT is the chat prompt to process.
-
-REQUEST-ALIST is the request data to send."
+Returns REQUEST-ALIST with prompt request data."
(let (request-alist)
(when (llm-chat-prompt-context prompt)
(push `("system" . ,(llm-provider-utils-get-system-prompt prompt
llm-ollama-example-prelude)) request-alist))
@@ -122,10 +120,8 @@ REQUEST-ALIST is the request data to send."
(defun llm-ollama--chat-request-chat (prompt)
"Create the chat request data for the `chat' endpoint.
-
PROMPT is the chat prompt to process.
-
-REQUEST-ALIST is the request data to send."
+Returns REQUEST-ALIST with prompt request data."
(let (request-alist messages)
(setq messages
(mapcar (lambda (interaction)
- [elpa] externals/llm updated (bed2cb774d -> a343797144), ELPA Syncer, 2024/02/07
- [elpa] externals/llm 3147810ec4 03/13: Minor changes to new function comments., ELPA Syncer, 2024/02/07
- [elpa] externals/llm a4d7098c44 01/13: Added support for Ollama /api/chat endpoint, ELPA Syncer, 2024/02/07
- [elpa] externals/llm 1c3727ce50 05/13: Restored comment that I had accidentally dropped from the generate endpoint helper., ELPA Syncer, 2024/02/07
- [elpa] externals/llm 843cf24aa4 04/13: Added endpoint parameter to documentation., ELPA Syncer, 2024/02/07
- [elpa] externals/llm ea72852375 09/13: Merge remote-tracking branch 'upstream/main' into ollama-chat-endpoint-support, ELPA Syncer, 2024/02/07
- [elpa] externals/llm ea2ec282aa 10/13: Removed /generate endpoint support based on PR feedback, ELPA Syncer, 2024/02/07
- [elpa] externals/llm a343797144 13/13: Merge pull request #16 from tquartus/ollama-chat-endpoint-support, ELPA Syncer, 2024/02/07
- [elpa] externals/llm b9fc46f333 08/13: Resolved merge conflicts and merged upstream/main into ollama-chat-endpoint-support., ELPA Syncer, 2024/02/07
- [elpa] externals/llm 1e08b7381d 07/13: Merge branch 'ahyatt:main' into ollama-chat-endpoint-support, ELPA Syncer, 2024/02/07
- [elpa] externals/llm 61db5c3cf8 02/13: Corrected form of comments of helper functions.,
ELPA Syncer <=
- [elpa] externals/llm a1b17b0170 06/13: Remove unneeded space at end of line., ELPA Syncer, 2024/02/07
- [elpa] externals/llm 9e7344ac27 11/13: Minor clean up, remove mention of :endpoint slot in README., ELPA Syncer, 2024/02/07
- [elpa] externals/llm 993081f072 12/13: Minor changes, ELPA Syncer, 2024/02/07