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 message_stop.ex
Raw

lib/anthropic/event/message_stop.ex

defmodule Anthropic.Event.MessageStop do
@moduledoc """
Represents the `message_stop` SSE event from the Anthropic streaming API.
The final event in every streamed response, signalling that the message
is fully complete. Carries no fields.
"""
@type t :: %__MODULE__{}
defstruct []
end