We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6afa2a2 commit 312a245Copy full SHA for 312a245
src/uipath/runtime/chat/runtime.py
@@ -88,6 +88,7 @@ async def stream(
88
runtime_result.status == UiPathRuntimeStatus.SUSPENDED
89
and runtime_result.triggers
90
):
91
+ logger.error(f"Number of triggers: {len(runtime_result.triggers)}")
92
api_triggers = [
93
t
94
for t in runtime_result.triggers
@@ -98,11 +99,8 @@ async def stream(
98
99
resume_map: dict[str, Any] = {}
100
101
for trigger in api_triggers:
-
102
# Emit startInterrupt event
103
- await self.chat_bridge.emit_interrupt_event(
104
- trigger
105
- )
+ await self.chat_bridge.emit_interrupt_event(trigger)
106
107
resume_data = await self.chat_bridge.wait_for_resume()
108
0 commit comments