Skip to content

Commit 46e42cf

Browse files
authored
Search auth-source for api key before authn (#110)
* search auth-sources for api-key before authn This commit closes https://linear.app/mercury/issue/84 **Why:** For users who have saved their api-key in an auth-source, this commit prevents them from seeing the prompt to authenticate manually or automatically, which can be annoying and takes time. **How:** implement codeium-get-saved-api-key using hardcoded values for :host and for :user. I'm not sure if it makes sense to allow the user to pass in arguments instead of hard-coding values here, but personally I think this is ok since I have seen other packages do the same. As an example, see https://github.com/rksm/org-ai/blob/812b59f88851536ed3ded199fb55d303c16c7c12/org-ai-openai.el#L190-L191 * Add instructions for using auth-sources to authn https://linear.app/mercury/issue/84
1 parent 7ae0413 commit 46e42cf

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,14 @@ the full response of a `GetCompletions` request:
158158
Note that, among other things, you get probabilities for each token!
159159
We would love to see a PR or your own package that uses those!
160160

161+
### 🔓 Authentication
162+
If you want to authenticate automatically, add your codeium api key to one of `auth-sources`. For example
163+
164+
~/.authinfo.gpg:
165+
``` text
166+
machine codeium.com login apikey secret <insert_api_key_here>
167+
```
168+
161169
## 💾 Installation Options
162170

163171
### ➡️ straight.el

codeium.el

+6-4
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,12 @@
184184
;; for AcceptCompletion
185185
(codeium-def codeium/completion_id (_api _state val) val)
186186

187-
;; alternative getting key from file?
188-
;; TODO
189-
;; (setq codeium/metadata/api_key 'codeium-default/metadata/api_key)
190-
(defun codeium-get-saved-api-key ())
187+
(defun codeium-get-saved-api-key ()
188+
"Retrieve the saved API key for codeium.com from auth-source."
189+
;; Ensure the auth-source library is loaded
190+
(require 'auth-source)
191+
(auth-source-pick-first-password :host "codeium.com" :user "apikey"))
192+
191193
(codeium-def codeium/metadata/api_key (_api state)
192194
(if-let ((api-key (or (codeium-state-last-api-key state) (codeium-get-saved-api-key))))
193195
(setq codeium/metadata/api_key api-key)

0 commit comments

Comments
 (0)