Files
wehub-resource-sync b957a53def
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:21:23 +08:00

34 lines
974 B
Python

# 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