|
66 | 66 | UiPathConversationStartedEvent, |
67 | 67 | UiPathConversationStartEvent, |
68 | 68 | ) |
69 | | -from .event import UiPathConversationEvent |
| 69 | +from .error import ( |
| 70 | + UiPathConversationErrorEndEvent, |
| 71 | + UiPathConversationErrorEvent, |
| 72 | + UiPathConversationErrorStartEvent, |
| 73 | +) |
| 74 | +from .event import UiPathConversationEvent, UiPathConversationLabelUpdatedEvent |
70 | 75 | from .exchange import ( |
71 | 76 | UiPathConversationExchange, |
72 | 77 | UiPathConversationExchangeEndEvent, |
73 | 78 | UiPathConversationExchangeEvent, |
74 | 79 | UiPathConversationExchangeStartEvent, |
75 | 80 | ) |
| 81 | +from .interrupt import ( |
| 82 | + UiPathConversationInterruptEndEvent, |
| 83 | + UiPathConversationInterruptEvent, |
| 84 | + UiPathConversationInterruptStartEvent, |
| 85 | +) |
76 | 86 | from .message import ( |
77 | 87 | UiPathConversationMessage, |
78 | 88 | UiPathConversationMessageEndEvent, |
|
91 | 101 | __all__ = [ |
92 | 102 | # Root |
93 | 103 | "UiPathConversationEvent", |
| 104 | + "UiPathConversationLabelUpdatedEvent", |
| 105 | + # Error |
| 106 | + "UiPathConversationErrorStartEvent", |
| 107 | + "UiPathConversationErrorEndEvent", |
| 108 | + "UiPathConversationErrorEvent", |
94 | 109 | # Conversation |
95 | 110 | "UiPathConversationCapabilities", |
96 | 111 | "UiPathConversationStartEvent", |
|
106 | 121 | "UiPathConversationMessageEndEvent", |
107 | 122 | "UiPathConversationMessageEvent", |
108 | 123 | "UiPathConversationMessage", |
| 124 | + # Interrupt |
| 125 | + "UiPathConversationInterruptStartEvent", |
| 126 | + "UiPathConversationInterruptEndEvent", |
| 127 | + "UiPathConversationInterruptEvent", |
109 | 128 | # Content |
110 | 129 | "UiPathConversationContentPartChunkEvent", |
111 | 130 | "UiPathConversationContentPartStartEvent", |
|
0 commit comments