Skip to content

Interface: CreateFlowNetworkRequest

@kortexya/reasoninglayer


@kortexya/reasoninglayer / FlowNetworks / CreateFlowNetworkRequest

Interface: CreateFlowNetworkRequest

Defined in: src/types/flow-networks.ts:60

Input to FlowNetworksClient.create.

Properties

description?

optional description: string | null

Defined in: src/types/flow-networks.ts:73

Optional human-readable description. Stored only as part of the response for inspection convenience.


edges

edges: EdgeSpec[]

Defined in: src/types/flow-networks.ts:68

Initial edges. Order is preserved in inspection responses.


nodes

nodes: string[]

Defined in: src/types/flow-networks.ts:62

Node names. Must be unique.


sink

sink: string

Defined in: src/types/flow-networks.ts:66

Sink node name. Must appear in nodes, distinct from source.


source

source: string

Defined in: src/types/flow-networks.ts:64

Source node name. Must appear in nodes.