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
beam_weaver lib beam_weaver graph execution halt.ex
Raw

lib/beam_weaver/graph/execution/halt.ex

defmodule BeamWeaver.Graph.Execution.Halt do
@moduledoc false
defstruct [
:reason,
:payload,
events: [],
pending_writes: []
]
@type reason :: :error | :interrupted | :parent_command
@type t :: %__MODULE__{
reason: reason(),
payload: term(),
events: list(),
pending_writes: list()
}
end