Files
microsoft--semantic-kernel/python/semantic_kernel/processes/kernel_process/kernel_process_edge.py
T
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

15 lines
467 B
Python

# Copyright (c) Microsoft. All rights reserved.
from semantic_kernel.kernel_pydantic import KernelBaseModel
from semantic_kernel.processes.kernel_process.kernel_process_function_target import KernelProcessFunctionTarget
from semantic_kernel.utils.feature_stage_decorator import experimental
@experimental
class KernelProcessEdge(KernelBaseModel):
"""Represents an edge between steps."""
source_step_id: str
output_target: KernelProcessFunctionTarget