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 0c3329b commit 10f85efCopy full SHA for 10f85ef
packages/server/src/queue/RedisEventSubscriber.ts
@@ -85,6 +85,15 @@ export class RedisEventSubscriber {
85
case 'nextAgent':
86
this.sseStreamer.streamNextAgentEvent(chatId, data)
87
break
88
+ case 'agentFlowEvent':
89
+ this.sseStreamer.streamAgentFlowEvent(chatId, data)
90
+ break
91
+ case 'agentFlowExecutedData':
92
+ this.sseStreamer.streamAgentFlowExecutedDataEvent(chatId, data)
93
94
+ case 'nextAgentFlow':
95
+ this.sseStreamer.streamNextAgentFlowEvent(chatId, data)
96
97
case 'action':
98
this.sseStreamer.streamActionEvent(chatId, data)
99
0 commit comments