Packages

Elixir client for the Pi coding agent RPC protocol.

Current section

Files

Jump to
pi_ex lib pi_ex command follow_up.ex
Raw

lib/pi_ex/command/follow_up.ex

defmodule PiEx.Command.FollowUp do
@moduledoc false
@enforce_keys [:message]
defstruct [:id, :message, :images]
@type t :: %__MODULE__{
id: String.t() | nil,
message: String.t(),
images: [map()] | nil
}
end