chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,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
|
||||
Reference in New Issue
Block a user