mirror of https://github.com/langgenius/dify.git
feat(graph_engine): Handle NodeRunAgentLogEvent
Signed-off-by: -LAN- <laipz8200@outlook.com>
This commit is contained in:
parent
9f8f21bf87
commit
d8ff4aa9ba
|
|
@ -10,6 +10,7 @@ from core.workflow.enums import NodeExecutionType
|
|||
from core.workflow.graph import Graph
|
||||
from core.workflow.graph_events import (
|
||||
GraphNodeEventBase,
|
||||
NodeRunAgentLogEvent,
|
||||
NodeRunExceptionEvent,
|
||||
NodeRunFailedEvent,
|
||||
NodeRunIterationFailedEvent,
|
||||
|
|
@ -116,6 +117,7 @@ class EventHandler:
|
|||
NodeRunLoopNextEvent,
|
||||
NodeRunLoopSucceededEvent,
|
||||
NodeRunLoopFailedEvent,
|
||||
NodeRunAgentLogEvent,
|
||||
),
|
||||
):
|
||||
# Iteration and loop events are collected directly
|
||||
|
|
|
|||
Loading…
Reference in New Issue