Skip to content

Commit 82c914d

Browse files
add chat_responses output
1 parent 35d1467 commit 82c914d

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

components/openai/actions/chat-using-file-search/chat-using-file-search.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ export default {
221221

222222
if (response) {
223223
$.export("$summary", `Successfully sent chat with id ${response.id}`);
224+
$.export("chat_responses", response.output);
224225
}
225226

226227
return response;

components/openai/actions/chat-using-functions/chat-using-functions.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@ export default {
247247

248248
if (response) {
249249
$.export("$summary", `Successfully sent chat with id ${response.id}`);
250+
$.export("chat_responses", response.output);
250251
}
251252

252253
return response;

components/openai/actions/chat-using-web-search/chat-using-web-search.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ export default {
192192

193193
if (response) {
194194
$.export("$summary", `Successfully sent chat with id ${response.id}`);
195+
$.export("chat_responses", response.output);
195196
}
196197

197198
return response;

0 commit comments

Comments
 (0)