-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathgptel-anthropic.el
551 lines (492 loc) · 23.1 KB
/
gptel-anthropic.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
;;; gptel-anthropic.el --- Anthropic AI suppport for gptel -*- lexical-binding: t; -*-
;; Copyright (C) 2023 Karthik Chikmagalur
;; Author: Karthik Chikmagalur <karthikchikmagalur@gmail.com>
;; This program 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 of the License, or
;; (at your option) any later version.
;; This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; This file adds support for Anthropic's Messages API to gptel
;;; Code:
(require 'cl-generic)
(eval-when-compile
(require 'cl-lib))
(require 'map)
(require 'gptel)
(defvar json-object-type)
(declare-function prop-match-value "text-property-search")
(declare-function text-property-search-backward "text-property-search")
(declare-function json-read "json" ())
(declare-function gptel-context--wrap "gptel-context")
(declare-function gptel-context--collect-media "gptel-context")
;;; Anthropic (Messages API)
(cl-defstruct (gptel-anthropic (:constructor gptel--make-anthropic)
(:copier nil)
(:include gptel-backend)))
;; NOTE the crucial difference between
;; - (push val (plist-get info :key)) and
;; (plist-put (plist-get info :key) (cons val ...))
;;
;; - (setf (plist-get info :key) val) and
;; (plist-put info :key val)
;;
;; in the following function. The first variant conses at the head of info, the
;; second one at the tail. This means only the second option is viable for
;; mutating a plist function argument that's passed by reference.
;; Do NOT change the plist-put to push or setf!
;; NOTE: The stream parser looks complicated only because it handles streaming
;; tool calls. Stream parsing is simple: if you are studying this code, look at
;; a commit from before tool-use support was added to gptel.
(cl-defmethod gptel-curl--parse-stream ((_backend gptel-anthropic) info)
"Parse an Anthropic data stream.
Return the text response accumulated since the last call to this
function. Additionally, mutate state INFO to add tool-use
information if the stream contains it. Not my best work, I know."
(let* ((content-strs)
(pt (point)))
(condition-case nil
(while (re-search-forward "^event: " nil t)
(setq pt (match-beginning 0))
(if (equal (line-end-position) (point-max))
(error "Data block incomplete"))
(cond
((looking-at "content_block_delta") ;collect incremental
(forward-line 1) (forward-char 5) ;text or tool responses
(when-let* ((delta (plist-get (gptel--json-read) :delta)))
(if-let* ((content (plist-get delta :text))
((not (eq content :null))))
(push content content-strs) ;collect text
(if-let* ((partial-json (plist-get delta :partial_json)))
(plist-put ;collect partial tool input
info :partial_json
(cons partial-json (plist-get info :partial_json)))))))
((looking-at "content_block_start") ;Is the following block text or tool-use?
(forward-line 1) (forward-char 5)
(when-let* ((cblock (plist-get (gptel--json-read) :content_block)))
(pcase (plist-get cblock :type)
("text" (push (plist-get cblock :text) content-strs))
("tool_use" (plist-put info :tool-use
(cons (list :id (plist-get cblock :id)
:name (plist-get cblock :name))
(plist-get info :tool-use)))))))
((and (looking-at "content_block_stop") (plist-get info :partial_json))
(condition-case-unless-debug nil ;Combine partial tool inputs
(let* ((args-json (apply #'concat (nreverse (plist-get info :partial_json))))
(args-decoded ;Handle blank argument strings
(if (string-empty-p args-json)
nil (gptel--json-read-string args-json))))
;; Add the input to the tool-call spec
(plist-put (car (plist-get info :tool-use)) :input args-decoded))
;; If there was an error in reading that tool, we ignore it:
;; TODO(tool) handle this error better
(error (pop (plist-get info :tool-use)))) ;TODO: nreverse :tool-use list
(plist-put info :partial_json nil))
((looking-at "message_delta")
;; collect stop_reason, usage_tokens and prepare tools
(forward-line 1) (forward-char 5)
(when-let* ((tool-use (plist-get info :tool-use)))
(let* ((data (plist-get info :data))
(prompts (plist-get data :messages)))
(plist-put ; Append a COPY of response text + tool-use to the prompts list
data :messages
(vconcat
prompts
`((:role "assistant"
:content ,(vconcat ;Insert any LLM text
(and-let* ((strs (plist-get info :partial_text)))
(list (list :type "text" :text (apply #'concat (nreverse strs)))))
(mapcar (lambda (tool-call) ;followed by the tool calls
(append (list :type "tool_use")
(copy-sequence tool-call)))
tool-use))))))
(plist-put info :partial_text nil) ; Clear any captured text
;; Then shape the tool-use block by adding args so we can call the functions
(mapc (lambda (tool-call)
(plist-put tool-call :args (plist-get tool-call :input))
(plist-put tool-call :input nil))
tool-use)))
(when-let* ((response (gptel--json-read)))
(plist-put info :output-tokens
(map-nested-elt response '(:usage :output_tokens)))
(plist-put info :stop-reason
(map-nested-elt response '(:delta :stop_reason)))))))
(error (goto-char pt)))
(let ((response-text (apply #'concat (nreverse content-strs))))
(unless (string-empty-p response-text)
(plist-put info :partial_text
(cons response-text (plist-get info :partial_text))))
response-text)))
(cl-defmethod gptel--parse-response ((_backend gptel-anthropic) response info)
"Parse an Anthropic (non-streaming) RESPONSE and return response text.
Mutate state INFO with response metadata."
(plist-put info :stop-reason (plist-get response :stop_reason))
(plist-put info :output-tokens
(map-nested-elt response '(:usage :output_tokens)))
(cl-loop
with content = (plist-get response :content)
for cblock across content
for type = (plist-get cblock :type)
if (equal type "text")
;; TODO(tool) can :text be :null?
collect (plist-get cblock :text) into content-strs
else if (equal type "tool_use")
collect cblock into tool-use
finally do
(when tool-use
;; First, add the tool call to the prompts list
(let* ((data (plist-get info :data))
(prompts (plist-get data :messages)))
(plist-put
data :messages
(vconcat prompts `((:role "assistant" :content ,content)))))
;; Then capture the tool call data for running the tool
(cl-loop
for call-raw in tool-use
for call = (copy-sequence call-raw) do
(plist-put call :args (plist-get call :input))
(plist-put call :input nil)
collect call into calls
finally do (plist-put info :tool-use calls)))
finally return
(and content-strs (apply #'concat content-strs))))
(cl-defmethod gptel--request-data ((backend gptel-anthropic) prompts)
"JSON encode PROMPTS for sending to ChatGPT."
(let ((prompts-plist
`(:model ,(gptel--model-name gptel-model)
:stream ,(or gptel-stream :json-false)
:max_tokens ,(or gptel-max-tokens 1024)
:messages [,@prompts])))
(when gptel--system-message
(plist-put prompts-plist :system gptel--system-message))
(when gptel-temperature
(plist-put prompts-plist :temperature gptel-temperature))
(when gptel-use-tools
(when (eq gptel-use-tools 'force)
(plist-put prompts-plist :tool_choice '(:type "any")))
(when gptel-tools
(plist-put prompts-plist :tools
(gptel--parse-tools backend gptel-tools))))
;; Merge request params with model and backend params.
(gptel--merge-plists
prompts-plist
(gptel-backend-request-params gptel-backend)
(gptel--model-request-params gptel-model))))
(cl-defmethod gptel--parse-tools ((_backend gptel-anthropic) tools)
"Parse TOOLS to the Anthropic API tool definition spec.
TOOLS is a list of `gptel-tool' structs, which see."
(vconcat
(mapcar
(lambda (tool)
(list :name (gptel-tool-name tool)
:description (gptel-tool-description tool)
:input_schema ;NOTE: Anthropic wants "{}" if the function takes no args, not null
(list :type "object"
:properties
(cl-loop
for arg in (gptel-tool-args tool)
for name = (plist-get arg :name)
for type = (plist-get arg :type)
for newname = (or (and (keywordp name) name)
(make-symbol (concat ":" name)))
for enum = (plist-get arg :enum)
append (list newname
`(:type ,(plist-get arg :type)
:description ,(plist-get arg :description)
,@(if enum (list :enum (vconcat enum)))
,@(cond
((equal type "object")
(list
:properties (plist-get arg :properties)
:required (or (plist-get arg :required) [])))
((equal type "array")
(list :items (plist-get arg :items)))))))
:required
(vconcat
(delq nil (mapcar
(lambda (arg) (and (not (plist-get arg :optional))
(plist-get arg :name)))
(gptel-tool-args tool)))))))
(ensure-list tools))))
(cl-defmethod gptel--parse-tool-results ((_backend gptel-anthropic) tool-use)
"Return a prompt containing tool call results in TOOL-USE.
TOOL-USE is a list of plists containing tool names, arguments and call results."
;; (declare (side-effect-free t))
(list
:role "user"
:content
(vconcat
(mapcar
(lambda (tool-call)
(let* ((result (plist-get tool-call :result))
(formatted
(list :type "tool_result"
:tool_use_id (plist-get tool-call :id)
:content (if (stringp result) result
(prin1-to-string result)))))
(prog1 formatted
(when (plist-get tool-call :error)
(plist-put formatted :is_error t)))))
tool-use))))
;; NOTE: No `gptel--inject-prompt' method required for gptel-anthropic, since
;; this is handled by its defgeneric implementation
(cl-defmethod gptel--parse-list ((_backend gptel-anthropic) prompt-list)
(cl-loop for text in prompt-list
for role = t then (not role)
if text collect
(list :role (if role "user" "assistant")
:content `[(:type "text" :text ,text)])))
(cl-defmethod gptel--parse-buffer ((_backend gptel-anthropic) &optional max-entries)
(let ((prompts) (prev-pt (point))
(include-media (and gptel-track-media (or (gptel--model-capable-p 'media)
(gptel--model-capable-p 'url)))))
(if (or gptel-mode gptel-track-response)
(while (and (or (not max-entries) (>= max-entries 0))
(goto-char (previous-single-property-change
(point) 'gptel nil (point-min)))
(not (= (point) prev-pt)))
;; HACK Until we can find a more robust solution for editing
;; responses, ignore prompts containing only whitespace, as the
;; Anthropic API can't handle it. See #452, #409, #406, #351 and #321
;; We check for blank prompts by skipping whitespace and comparing
;; point against the previous.
(unless (save-excursion (skip-syntax-forward " ") (>= (point) prev-pt))
(pcase (get-char-property (point) 'gptel)
('response
(push (list :role "assistant"
:content (buffer-substring-no-properties (point) prev-pt))
prompts))
('nil ; user role: possibly with media
(if include-media
(push (list :role "user"
:content
(gptel--anthropic-parse-multipart
(gptel--parse-media-links major-mode (point) prev-pt)))
prompts)
(push (list :role "user"
:content
(gptel--trim-prefixes
(buffer-substring-no-properties (point) prev-pt)))
prompts)))))
(setq prev-pt (point))
(and max-entries (cl-decf max-entries)))
(push (list :role "user"
:content
(string-trim (buffer-substring-no-properties (point-min) (point-max))))
prompts))
prompts))
(defun gptel--anthropic-parse-multipart (parts)
"Convert a multipart prompt PARTS to the Anthropic API format.
The input is an alist of the form
((:text \"some text\")
(:media \"/path/to/media.png\" :mime \"image/png\")
(:text \"More text\")).
The output is a vector of entries in a backend-appropriate
format."
(cl-loop
for part in parts
for n upfrom 1
with last = (length parts)
with type
for text = (plist-get part :text)
for mime = (plist-get part :mime)
for media = (plist-get part :media)
if text do
(and (or (= n 1) (= n last)) (setq text (gptel--trim-prefixes text))) and
unless (string-empty-p text)
collect `(:type "text" :text ,text) into parts-array end
else if media
do
(setq type (cond ;Currently supported: Images and PDFs
((equal (substring mime 0 5) "image") "image")
;; NOTE: Only Claude 3.5 Sonnet supports PDF documents:
((equal mime "application/pdf") "document")
(t (error (concat "(gptel-anthropic) Request aborted: "
"trying to send unsupported MIME type %s")
mime))))
and collect
`(:type ,type
:source (:type "base64"
:media_type ,(plist-get part :mime)
:data ,(gptel--base64-encode media))
;; TODO Make media caching a user option
,@(and (gptel--model-capable-p 'cache)
'(:cache_control (:type "ephemeral"))))
into parts-array
finally return (vconcat parts-array)))
(cl-defmethod gptel--wrap-user-prompt ((_backend gptel-anthropic) prompts
&optional inject-media)
"Wrap the last user prompt in PROMPTS with the context string.
If INJECT-MEDIA is non-nil wrap it with base64-encoded media
files in the context."
(if inject-media
;; Wrap the first user prompt with included media files/contexts
(when-let* ((media-list (gptel-context--collect-media)))
(cl-callf (lambda (current)
(vconcat
(gptel--anthropic-parse-multipart media-list)
(cl-typecase current
(string `((:type "text" :text ,current)))
(vector current)
(t current))))
(plist-get (car prompts) :content)))
;; Wrap the last user prompt with included text contexts
(cl-callf (lambda (current)
(cl-etypecase current
(string (gptel-context--wrap current))
(vector (if-let* ((wrapped (gptel-context--wrap nil)))
(vconcat `((:type "text" :text ,wrapped))
current)
current))))
(plist-get (car (last prompts)) :content))))
;; (if-let* ((context-string (gptel-context--string gptel-context--alist)))
;; (cl-callf (lambda (previous)
;; (cl-typecase previous
;; (string (concat context-string previous))
;; (vector (vconcat `((:type "text" :text ,previous))
;; previous))
;; (t context-string)))
;; (plist-get (car (last prompts)) :content)))
(defconst gptel--anthropic-models
'((claude-3-7-sonnet-20250219
:description "Hybrid model capable of standard thinking and extended thinking modes"
:capabilities (media tool-use cache)
:mime-types ("image/jpeg" "image/png" "image/gif" "image/webp" "application/pdf")
:context-window 200
:input-cost 3
:output-cost 15
:cutoff-date "2025-02")
(claude-3-5-sonnet-20241022
:description "Highest level of intelligence and capability"
:capabilities (media tool-use cache)
:mime-types ("image/jpeg" "image/png" "image/gif" "image/webp" "application/pdf")
:context-window 200
:input-cost 3
:output-cost 15
:cutoff-date "2024-04")
(claude-3-5-sonnet-20240620
:description "Highest level of intelligence and capability (earlier version)"
:capabilities (media tool-use cache)
:mime-types ("image/jpeg" "image/png" "image/gif" "image/webp")
:context-window 200
:input-cost 3
:output-cost 15
:cutoff-date "2024-04")
(claude-3-5-haiku-20241022
:description "Intelligence at blazing speeds"
:capabilities (tool-use)
:context-window 200
:input-cost 1.00
:output-cost 5.00
:cutoff-date "2024-07")
(claude-3-opus-20240229
:description "Top-level performance, intelligence, fluency, and understanding"
:capabilities (media tool-use cache)
:mime-types ("image/jpeg" "image/png" "image/gif" "image/webp")
:context-window 200
:input-cost 15
:output-cost 75
:cutoff-date "2023-08")
(claude-3-sonnet-20240229
:description "Balance of intelligence and speed (legacy model)"
:capabilities (media tool-use)
:mime-types ("image/jpeg" "image/png" "image/gif" "image/webp")
:context-window 200
:input-cost 3
:output-cost 15
:cutoff-date "2023-08")
(claude-3-haiku-20240307
:description "Fast and most compact model for near-instant responsiveness"
:capabilities (tool-use)
:context-window 200
:input-cost 0.25
:output-cost 1.25
:cutoff-date "2023-08"))
"List of available Anthropic models and associated properties.
Keys:
- `:description': a brief description of the model.
- `:capabilities': a list of capabilities supported by the model.
- `:mime-types': a list of supported MIME types for media files.
- `:context-window': the context window size, in thousands of tokens.
- `:input-cost': the input cost, in US dollars per million tokens.
- `:output-cost': the output cost, in US dollars per million tokens.
- `:cutoff-date': the knowledge cutoff date.
- `:request-params': a plist of additional request parameters to
include when using this model.
Information about the Anthropic models was obtained from the following
comparison table:
<https://docs.anthropic.com/en/docs/about-claude/models#model-comparison-table>")
;;;###autoload
(cl-defun gptel-make-anthropic
(name &key curl-args stream key request-params
(header
(lambda () (when-let* ((key (gptel--get-api-key)))
`(("x-api-key" . ,key)
("anthropic-version" . "2023-06-01")
("anthropic-beta" . "pdfs-2024-09-25")
("anthropic-beta" . "prompt-caching-2024-07-31")))))
(models gptel--anthropic-models)
(host "api.anthropic.com")
(protocol "https")
(endpoint "/v1/messages"))
"Register an Anthropic API-compatible backend for gptel with NAME.
Keyword arguments:
CURL-ARGS (optional) is a list of additional Curl arguments.
HOST (optional) is the API host, \"api.anthropic.com\" by default.
MODELS is a list of available model names, as symbols.
Additionally, you can specify supported LLM capabilities like
vision or tool-use by appending a plist to the model with more
information, in the form
(model-name . plist)
For a list of currently recognized plist keys, see
`gptel--anthropic-models'. An example of a model specification
including both kinds of specs:
:models
\\='(claude-3-haiku-20240307 ;Simple specs
claude-3-opus-20240229
(claude-3-5-sonnet-20240620 ;Full spec
:description \"Balance of intelligence and speed\"
:capabilities (media tool json)
:mime-types
(\"image/jpeg\" \"image/png\" \"image/gif\" \"image/webp\")))
STREAM is a boolean to toggle streaming responses, defaults to
false.
PROTOCOL (optional) specifies the protocol, https by default.
ENDPOINT (optional) is the API endpoint for completions, defaults to
\"/v1/messages\".
HEADER (optional) is for additional headers to send with each
request. It should be an alist or a function that retuns an
alist, like:
((\"Content-Type\" . \"application/json\"))
KEY is a variable whose value is the API key, or function that
returns the key.
REQUEST-PARAMS (optional) is a plist of additional HTTP request
parameters (as plist keys) and values supported by the API. Use
these to set parameters that gptel does not provide user options
for."
(declare (indent 1))
(let ((backend (gptel--make-anthropic
:curl-args curl-args
:name name
:host host
:header header
:key key
:models (gptel--process-models models)
:protocol protocol
:endpoint endpoint
:stream stream
:request-params request-params
:url (if protocol
(concat protocol "://" host endpoint)
(concat host endpoint)))))
(prog1 backend
(setf (alist-get name gptel--known-backends
nil nil #'equal)
backend))))
(provide 'gptel-anthropic)
;;; gptel-anthropic.el ends here