StrategyEventGraphNode

data class StrategyEventGraphNode(val id: String, val name: String)(source)

Represents a node within an AI agent's processing graph.

Each node in the graph is associated with an identifier, a name, an expected input type, and an expected output type. These nodes are components that process or transform data within an AI agent system, contributing to the overall workflow of the agent.

Constructors

Link copied to clipboard
constructor(id: String, name: String)

Properties

Link copied to clipboard
val id: String

The unique identifier of the node within the graph;

Link copied to clipboard

The descriptive name of the node.