Packages

An Elixir framework for building LLM agent systems with skills, tools, and subagent delegation.

Current section

Files

Jump to
skill_kit lib anthropic event content_block_stop.ex
Raw

lib/anthropic/event/content_block_stop.ex

defmodule Anthropic.Event.ContentBlockStop do
@moduledoc """
Represents the `content_block_stop` SSE event from the Anthropic streaming API.
Emitted when the content block at `index` is complete. No further deltas
will be sent for that block.
"""
@type t :: %__MODULE__{
index: non_neg_integer()
}
@enforce_keys [:index]
defstruct [:index]
end