File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
- ; ;; gptel-context.el --- Context aggregator for GPTel -*- lexical-binding : t ; -*-
1
+ ; ;; gptel-context.el --- Context aggregator for gptel -*- lexical-binding : t ; -*-
2
2
3
3
; ; Copyright (C) 2023 Karthik Chikmagalur
4
4
23
23
; ;; Commentary:
24
24
25
25
; ; The context allows you to conveniently create contexts which can be fed
26
- ; ; to GPTel .
26
+ ; ; to gptel .
27
27
28
28
; ;; Code:
29
29
Original file line number Diff line number Diff line change 1
- ; ;; gptel-curl.el --- Curl support for GPTel -*- lexical-binding : t ; -*-
1
+ ; ;; gptel-curl.el --- Curl support for gptel -*- lexical-binding : t ; -*-
2
2
3
3
; ; Copyright (C) 2023 Karthik Chikmagalur
4
4
22
22
23
23
; ;; Commentary:
24
24
25
- ; ; Curl support for GPTel . Utility functions.
25
+ ; ; Curl support for gptel . Utility functions.
26
26
27
27
; ;; Code:
28
28
@@ -205,7 +205,7 @@ PROC-INFO is the plist containing process metadata."
205
205
206
206
; ; TODO: Separate user-messaging from this function
207
207
(defun gptel-curl--stream-cleanup (process _status )
208
- " Process sentinel for GPTel curl requests.
208
+ " Process sentinel for gptel curl requests.
209
209
210
210
PROCESS and _STATUS are process parameters."
211
211
(let ((proc-buf (process-buffer process)))
Original file line number Diff line number Diff line change 1
- ; ;; gptel-transient.el --- Transient menu for GPTel -*- lexical-binding : t ; -*-
1
+ ; ;; gptel-transient.el --- Transient menu for gptel -*- lexical-binding : t ; -*-
2
2
3
3
; ; Copyright (C) 2023 Karthik Chikmagalur
4
4
Original file line number Diff line number Diff line change @@ -248,15 +248,15 @@ This only affects requests originating from Org mode buffers."
248
248
" Size threshold for using file input with Curl.
249
249
250
250
Specifies the size threshold for when to use a temporary file to pass data to
251
- Curl in GPTel queries. If the size of the data to be sent exceeds this
251
+ Curl in gptel queries. If the size of the data to be sent exceeds this
252
252
threshold, the data is written to a temporary file and passed to Curl using the
253
253
`--data-binary' option with a file reference. Otherwise, the data is passed
254
254
directly as a command-line argument.
255
255
256
256
The value is an integer representing the number of bytes.
257
257
258
258
Adjusting this value may be necessary depending on the environment
259
- and the typical size of the data being sent in GPTel queries.
259
+ and the typical size of the data being sent in gptel queries.
260
260
A larger value may improve performance by avoiding the overhead of creating
261
261
temporary files for small data payloads, while a smaller value may be needed
262
262
if the command-line argument size is limited by the operating system.
You can’t perform that action at this time.
0 commit comments