ResolvedEdge

data class ResolvedEdge(val edge: AIAgentEdge<*, *>, val output: Any?)(source)

Represents a resolved edge in the context of an AI agent strategy graph, combining an edge and its corresponding resolved output.

Constructors

Link copied to clipboard
constructor(edge: AIAgentEdge<*, *>, output: Any?)

Properties

Link copied to clipboard
val edge: AIAgentEdge<*, *>

The directed edge that connects different nodes within the AI agent strategy graph. This edge signifies a pathway for data flow between nodes.

Link copied to clipboard
val output: Any?

The resolved output associated with the provided edge. This represents the data produced or passed along this edge during execution.