Skip to content

Commit 9dedf5c

Browse files
authored
Merge pull request #1114 from cardstack/remove-streaming-indicator-for-errors-and-options
Do not show bot streaming message indicator when it sends an error or an apply option
2 parents e9028ad + 83cd2aa commit 9dedf5c

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed

packages/ai-bot/main.ts

+4
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ async function sendOption(
104104
msgtype: 'org.boxel.command',
105105
formatted_body: body,
106106
format: 'org.matrix.custom.html',
107+
isStreamingFinished: true,
107108
data: {
108109
command: {
109110
type: 'patch',
@@ -159,6 +160,9 @@ async function sendError(
159160
room,
160161
'There was an error processing your request, please try again later',
161162
eventToUpdate,
163+
{
164+
isStreamingFinished: true,
165+
},
162166
);
163167
} catch (e) {
164168
// We've had a problem sending the error message back to the user

packages/base/room.gts

+1
Original file line numberDiff line numberDiff line change
@@ -520,6 +520,7 @@ export class RoomField extends FieldDef {
520520
commandType: command.type,
521521
payload: command,
522522
}),
523+
isStreamingFinished: true,
523524
});
524525
} else {
525526
// Text from the AI bot

packages/host/tests/integration/components/operator-mode-test.gts

+45
Original file line numberDiff line numberDiff line change
@@ -1213,6 +1213,51 @@ module('Integration | operator-mode', function (hooks) {
12131213
'Answer to my last question is not in progress',
12141214
);
12151215
});
1216+
1217+
test('it does not display the streaming indicator when ai bot sends an option', async function (assert) {
1218+
await setCardInOperatorModeState();
1219+
await renderComponent(
1220+
class TestDriver extends GlimmerComponent {
1221+
<template>
1222+
<OperatorMode @onClose={{noop}} />
1223+
<CardPrerender />
1224+
</template>
1225+
},
1226+
);
1227+
let roomId = await openAiAssistant();
1228+
1229+
addRoomEvent(matrixService, {
1230+
event_id: 'event1',
1231+
room_id: roomId,
1232+
state_key: 'state',
1233+
type: 'm.room.message',
1234+
origin_server_ts: new Date(2024, 0, 3, 12, 30).getTime(),
1235+
sender: '@aibot:localhost',
1236+
content: {
1237+
body: 'i am the body',
1238+
msgtype: 'org.boxel.command',
1239+
formatted_body: 'A patch',
1240+
format: 'org.matrix.custom.html',
1241+
data: JSON.stringify({
1242+
command: {
1243+
type: 'patch',
1244+
id: `${testRealmURL}Person/fadhlan`,
1245+
patch: {
1246+
attributes: { firstName: 'Dave' },
1247+
},
1248+
},
1249+
}),
1250+
},
1251+
});
1252+
1253+
await waitFor('[data-test-message-idx="0"]');
1254+
assert
1255+
.dom('[data-test-message-idx="0"] [data-test-ai-avatar]')
1256+
.doesNotHaveClass(
1257+
'ai-avatar-animated',
1258+
'ai bot patch message does not have a spinner',
1259+
);
1260+
});
12161261
});
12171262

12181263
test('it loads a card and renders its isolated view', async function (assert) {

0 commit comments

Comments
 (0)