Packages
Elixir-native LangChain, LangGraph, and DeepAgents for traceable LLM apps: OTP workflows, tools, memory, human-in-the-loop, streaming, custom clients/adapters, minimal deps, and WeaveScope tracing.
Current section
Files
Jump to
Current section
Files
lib/beam_weaver/graph/execution/step_outcome.ex
defmodule BeamWeaver.Graph.Execution.StepOutcome do
@moduledoc false
defstruct [
:step_update,
:state,
sends: [],
next: [],
events: []
]
@type t :: %__MODULE__{
step_update: map(),
state: map(),
sends: list(),
next: list(),
events: list()
}
end