-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Expand file tree
/
Copy pathprocess_event.py
More file actions
33 lines (25 loc) · 974 Bytes
/
process_event.py
File metadata and controls
33 lines (25 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright (c) Microsoft. All rights reserved.
from typing import Any
from semantic_kernel.kernel_pydantic import KernelBaseModel
from semantic_kernel.processes.kernel_process.kernel_process_event import (
KernelProcessEvent,
KernelProcessEventVisibility,
)
from semantic_kernel.utils.feature_stage_decorator import experimental
@experimental
class ProcessEvent(KernelBaseModel):
"""A wrapper around KernelProcessEvent that helps to manage the namespace of the event."""
namespace: str | None = None
inner_event: KernelProcessEvent
@property
def id(self) -> str:
"""The Id of the event."""
return f"{self.namespace}.{self.inner_event.id}"
@property
def data(self) -> Any | None:
"""The data of the event."""
return self.inner_event.data
@property
def visibility(self) -> "KernelProcessEventVisibility":
"""The visibility of the event."""
return self.inner_event.visibility