We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cce31d commit 03d0497Copy full SHA for 03d0497
apps/dashboard/src/app/nebula-app/(app)/api/chat.ts
@@ -202,6 +202,10 @@ export async function promptNebula(params: {
202
break;
203
}
204
205
+ case "ping": {
206
+ break;
207
+ }
208
+
209
default: {
210
console.warn("unhandled event", event);
211
@@ -298,4 +302,8 @@ type ChatStreamedEvent =
298
302
| {
299
303
event: "error";
300
304
data: string;
305
306
+ | {
307
+ event: "ping";
308
+ data: string;
301
309
};
0 commit comments