-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathchatgpt-shell-kagi.el
161 lines (129 loc) · 5.66 KB
/
chatgpt-shell-kagi.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
;;; chatgpt-shell-kagi.el --- Kagi-specific logic -*- lexical-binding: t -*-
;; Copyright (C) 2023 Alvaro Ramirez
;; Author: Alvaro Ramirez https://xenodium.com
;; URL: https://github.com/xenodium/chatgpt-shell
;; Package-Requires: ((emacs "29.1") (shell-maker "0.72.1"))
;; This package is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;; This package is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; Adds Kagi specifics for `chatgpt-shell'.
;;; Code:
(eval-when-compile
(require 'cl-lib))
(require 'let-alist)
(require 'shell-maker)
(require 'map)
(require 'seq)
(require 'subr-x)
(defvar chatgpt-shell-proxy)
(cl-defun chatgpt-shell-kagi-make-summarizer-model ()
"Create an Kagi model.
Set VERSION, SHORT-VERSION, TOKEN-WIDTH, CONTEXT-WINDOW and
VALIDATE-COMMAND handler."
`((:provider . "Kagi")
(:label . "Kagi")
(:version . "muriel-summarizer")
(:headers . chatgpt-shell-kagi--make-summarizer-headers)
(:handler . chatgpt-shell-kagi--handle-summarizer-command)
(:ignore-context . t)
(:filter . chatgpt-shell-kagi--extract-summarizer-response)
(:url . chatgpt-shell-kagi--make-summarizer-url)
(:validate-command . chatgpt-shell-kagi--validate-command)))
(defcustom chatgpt-shell-kagi-key nil
"Kagi API key as a string or a function that loads and returns it."
:type '(choice (function :tag "Function")
(string :tag "String"))
:group 'chatgpt-shell)
(defcustom chatgpt-shell-kagi-api-url-base "https://kagi.com/api/v0/summarize"
"Kagi API's base URL.
API url = base + path.
If you use Kagi through a proxy service, change the URL base."
:type 'string
:safe #'stringp
:group 'chatgpt-shell)
(defun chatgpt-shell-kagi-models ()
"Build a list of Kagi LLM models available."
(list (chatgpt-shell-kagi-make-summarizer-model)))
(defun chatgpt-shell-kagi-key ()
"Get the kagi API key."
(cond ((stringp chatgpt-shell-kagi-key)
chatgpt-shell-kagi-key)
((functionp chatgpt-shell-kagi-key)
(condition-case _err
(funcall chatgpt-shell-kagi-key)
(error
"KEY-NOT-FOUND")))
(t
nil)))
(cl-defun chatgpt-shell-kagi--make-summarizer-headers (&key _model _settings)
"Create the API headers."
(unless (chatgpt-shell-kagi-key)
(error "Your chatgpt-shell-kagi-key is missing"))
(list (format "Authorization: Bot %s" (chatgpt-shell-kagi-key))))
(cl-defun chatgpt-shell-kagi--handle-summarizer-command (&key model command _context shell settings)
"Handle Kagi shell COMMAND (prompt) using MODEL, CONTEXT, SHELL, and SETTINGS."
(shell-maker-make-http-request
:async t
:url (chatgpt-shell-kagi--make-summarizer-url :model model
:settings settings
:command command)
:proxy chatgpt-shell-proxy
:headers (chatgpt-shell-kagi--make-summarizer-headers)
:filter #'chatgpt-shell-kagi--extract-summarizer-response
:shell shell))
(cl-defun chatgpt-shell-kagi--make-summarizer-url (&key _model _settings command)
"Create Kagi summarizer API URL using COMMAND."
(concat chatgpt-shell-kagi-api-url-base
"?engine=muriel"
"&url="
(url-hexify-string (string-trim command))))
(defun chatgpt-shell-kagi--extract-summarizer-response (raw-response)
"Extract Kagi summarizer response from RAW-RESPONSE.
Responses are never streamed."
;; Non-streamed
(if-let* ((whole (shell-maker--json-parse-string raw-response))
(response (let-alist whole
(or (let-alist (seq-first .error)
.msg)
.data.output))))
response
(list (cons :pending raw-response))))
(cl-defun chatgpt-shell-kagi--extract-url (&key text fail)
"Trim TEXT URL found.
Optionally FAIL if none found."
(let* ((trimmed (string-trim text))
(urls (split-string trimmed "\\s-+" t))
(valid-url (seq-filter (lambda (url)
(or (string-match-p "^https?://" url)
(string-match-p "^[a-zA-Z0-9.-]+\\.[a-zA-Z]\\{2,\\}\\(/.*\\)?$" url))) urls)))
(if (and (= 1 (length valid-url)) (= 1 (length urls)))
(let ((url (car valid-url)))
(if (string-match-p "^[a-zA-Z0-9.-]+\\.[a-zA-Z]\\{2,\\}\\(/.*\\)?$" url)
(concat "https://" url)
url))
(if fail
(error "Input must contain exactly one URL")
nil))))
(defun chatgpt-shell-kagi--validate-command (command model settings)
"Return error string if command/setup isn't valid.
Needs COMMAND, MODEL and SETTINGS."
(cond ((not chatgpt-shell-kagi-key)
"Variable `chatgpt-shell-kagi-key' needs to be set to your key.
Try M-x set-variable chatgpt-shell-kagi-key
or
(setq chatgpt-shell-kagi-key \"my-key\")")
((not (chatgpt-shell-kagi--extract-url :text command))
"Needs one and only one URL")
((map-elt settings :system-prompt)
(format "Model \"%s\" does not support system prompts. Please unset via \"M-x chatgpt-shell-swap-system-prompt\" by selecting None."
(map-elt model :version)))))
(provide 'chatgpt-shell-kagi)
;;; chatgpt-shell-kagi.el ends here