File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 195
195
(mapconcat (lambda (content )
196
196
(let-alist content
197
197
.text))
198
- .content)))))
198
+ .content " " )))))
199
199
response
200
200
(if-let ((chunks (shell-maker--split-text raw-response)))
201
201
(let ((response)
Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ For example:
229
229
(let-alist choice
230
230
(or .delta.content
231
231
.message.content)))
232
- .choices)))))
232
+ .choices " " )))))
233
233
response
234
234
(if-let ((chunks (shell-maker--split-text raw-response)))
235
235
(let ((response)
Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ Otherwise:
207
207
(let-alist choice
208
208
(or .delta.content
209
209
.message.content)))
210
- .choices)))))
210
+ .choices " " )))))
211
211
response
212
212
(when-let ((chunks (shell-maker--split-text raw-response)))
213
213
(let ((response)
@@ -227,7 +227,7 @@ Otherwise:
227
227
(let-alist choice
228
228
(or .delta.content
229
229
.message.content)))
230
- .choices)))))
230
+ .choices " " )))))
231
231
(unless (string-empty-p text)
232
232
(setq response (concat response text)))
233
233
(setq pending (concat pending
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ Otherwise:
158
158
.message.content)
159
159
(t
160
160
" " ))))
161
- .choices)))))
161
+ .choices " " )))))
162
162
(let ((citations (let-alist whole
163
163
.citations)))
164
164
(chatgpt-shell-perplexity--expand-citations
@@ -183,7 +183,7 @@ Otherwise:
183
183
(let-alist choice
184
184
(or .delta.content
185
185
.message.content)))
186
- .choices)))))
186
+ .choices " " )))))
187
187
(progn
188
188
(setq citations (let-alist obj
189
189
.citations))
You can’t perform that action at this time.
0 commit comments