emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/gptel a673f54a3e 024/273: gptel, gptel-curl: Handle missin


From: ELPA Syncer
Subject: [nongnu] elpa/gptel a673f54a3e 024/273: gptel, gptel-curl: Handle missing API key
Date: Wed, 1 May 2024 10:01:29 -0400 (EDT)

branch: elpa/gptel
commit a673f54a3ed6a47a964fa8173f958ce9feefdc34
Author: Karthik Chikmagalur <karthikchikmagalur@gmail.com>
Commit: Karthik Chikmagalur <karthikchikmagalur@gmail.com>

    gptel, gptel-curl: Handle missing API key
    
    gptel.el (gptel--url-get-response): When `gptel-send' is called
    directly, the API key is assumed to exist. Ensure that it is read.
    
    gptel-curl.el (gptel-curl--get-args): Ditto.
---
 gptel-curl.el | 3 ++-
 gptel.el      | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/gptel-curl.el b/gptel-curl.el
index 7953790b80..4f2348f36e 100644
--- a/gptel-curl.el
+++ b/gptel-curl.el
@@ -50,7 +50,8 @@ PROMPTS is the data to send, TOKEN is a unique identifier."
          (api-key
           (cond
            ((stringp gptel-api-key) gptel-api-key)
-           ((functionp gptel-api-key) (funcall gptel-api-key))))
+           ((functionp gptel-api-key) (funcall gptel-api-key))
+           (t (setq gptel-api-key (read-passwd "OpenAI API key: ")))))
          (headers
           `(("Content-Type" . "application/json")
             ("Authorization" . ,(concat "Bearer " api-key)))))
diff --git a/gptel.el b/gptel.el
index f93f44c009..b90bf54ff1 100644
--- a/gptel.el
+++ b/gptel.el
@@ -278,7 +278,8 @@ Return the message received."
          (api-key
           (cond
            ((stringp gptel-api-key) gptel-api-key)
-           ((functionp gptel-api-key) (funcall gptel-api-key))))
+           ((functionp gptel-api-key) (funcall gptel-api-key))
+           (t (setq gptel-api-key (read-passwd "OpenAI API key: ")))))
          (url-request-method "POST")
          (url-request-extra-headers
          `(("Content-Type" . "application/json")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]