Bugfix/Update agentflow v2 events to redis subscriber (#4415)
update agentflow v2 events to redis subscriber
This commit is contained in:
parent
0c3329b81b
commit
10f85ef47e
|
|
@ -85,6 +85,15 @@ export class RedisEventSubscriber {
|
|||
case 'nextAgent':
|
||||
this.sseStreamer.streamNextAgentEvent(chatId, data)
|
||||
break
|
||||
case 'agentFlowEvent':
|
||||
this.sseStreamer.streamAgentFlowEvent(chatId, data)
|
||||
break
|
||||
case 'agentFlowExecutedData':
|
||||
this.sseStreamer.streamAgentFlowExecutedDataEvent(chatId, data)
|
||||
break
|
||||
case 'nextAgentFlow':
|
||||
this.sseStreamer.streamNextAgentFlowEvent(chatId, data)
|
||||
break
|
||||
case 'action':
|
||||
this.sseStreamer.streamActionEvent(chatId, data)
|
||||
break
|
||||
|
|
|
|||
Loading…
Reference in New Issue