Skip to main content

lib/pi/protocol/llm/done.ex

defmodule Pi.Protocol.LLM.Done do
  @moduledoc "Streaming LLM completion marker routed by request id."

  use JSONCodec, fast_path: :json, case: :camel

  @type_atom :llm_done

  defstruct [:type, :id, result: nil, usage: nil]

  @type t :: %__MODULE__{type: atom(), id: String.t(), result: term(), usage: map() | nil}

  codec(:type, atom: :existing)

  def type_atom, do: @type_atom
end