[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/llm b2f1605514 33/34: Delete some trailing whitespace
From: |
Andrew Hyatt |
Subject: |
[elpa] externals/llm b2f1605514 33/34: Delete some trailing whitespace |
Date: |
Sat, 16 Sep 2023 01:32:50 -0400 (EDT) |
branch: externals/llm
commit b2f160551488c9d16ecf1b64f7b70576a3ed6775
Author: Andrew Hyatt <ahyatt@gmail.com>
Commit: Andrew Hyatt <ahyatt@gmail.com>
Delete some trailing whitespace
---
llm-openai.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/llm-openai.el b/llm-openai.el
index edb10f7862..ba79e748af 100644
--- a/llm-openai.el
+++ b/llm-openai.el
@@ -139,7 +139,7 @@ SYNC is non-nil when the request should wait until the
response is received."
("parameters" . ,return-json-spec))))
request-alist)
(push '("function_call" . (("name" . "output"))) request-alist))
-
+
(request "https://api.openai.com/v1/chat/completions"
:type "POST"
:sync sync
@@ -150,7 +150,7 @@ SYNC is non-nil when the request should wait until the
response is received."
:success (cl-function
(lambda (&key data &allow-other-keys)
(let ((result (cdr (assoc 'content (cdr (assoc 'message
(aref (cdr (assoc 'choices data)) 0))))))
- (func-result (cdr (assoc 'arguments (cdr (assoc
'function_call (cdr (assoc 'message (aref (cdr (assoc 'choices data))
0)))))))))
+ (func-result (cdr (assoc 'arguments (cdr (assoc
'function_call (cdr (assoc 'message (aref (cdr (assoc 'choices data)) 0)))))))))
(funcall response-callback (or func-result result)))))
:error (cl-function (lambda (&key error-thrown data &allow-other-keys)
(funcall error-callback
- [elpa] externals/llm 131a7ee5d3 12/34: Solve flaky errors when using sync llm commands, (continued)
- [elpa] externals/llm 131a7ee5d3 12/34: Solve flaky errors when using sync llm commands, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm 48ae59d149 14/34: Fix llm-chat-prompt-to-text, which was unusable, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm 636014bf64 08/34: Make all remaining code async-friendly, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm 9e3040bad2 20/34: Add warnings requested by GNU about nonfree software, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm c8b14b4d9c 19/34: Fix fake provider embedding func and remove async unit tests, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm 9057a50df4 11/34: Fix indenting in llm--run-async-as-sync, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm c322577b9b 13/34: Test both sync and async commands, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm cff9ab8f3c 22/34: Centralize nonfree llm warnings, and warn with a targeted type, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm ad230d9d6b 10/34: Add methods for nil provider, to throw more meaningful errors, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm 650bba65d5 25/34: Improve the docstring for llm--warn-on-nonfree, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm b2f1605514 33/34: Delete some trailing whitespace,
Andrew Hyatt <=
- [elpa] externals/llm 39ae6fc794 34/34: Assign copyright to FSF, in preparation of inclusion to GNU ELPA, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm 9a3fc01cac 17/34: Switch from generic to per-provider sync solution, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm eba797b295 04/34: Implement error handling for gcloud auth issues, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm 16ee85fd11 05/34: Add async options, and made the sync options just use those and wait, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm 3919b77383 06/34: Implement confusion and typos in README.org, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm b52958757a 18/34: Fix docstring wider than 80 characters in llm-vertex, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm abbff2aa9d 23/34: Change method name to llm-chat (without "-response"), update README, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm e94bc937c7 27/34: Fix issue with llm-chat before method having too many arguments, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm 7edd36b2dc 28/34: Fix obsolete or incorrect function calls in llm-fake, Andrew Hyatt, 2023/09/16
- [elpa] externals/llm d4bbe9d84c 29/34: Fix incorrect requires in openai and vertex implementations, Andrew Hyatt, 2023/09/16