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 indexing result.ex
Raw

lib/beam_weaver/indexing/result.ex

defmodule BeamWeaver.Indexing.Result do
@moduledoc """
Result counters for an indexing run.
"""
defstruct added: 0,
updated: 0,
skipped: 0,
deleted: 0,
failed: 0,
errors: [],
indexed_ids: [],
deleted_ids: []
@type t :: %__MODULE__{}
end