defmodule OpenCode.Generated.ToolTextContent do @moduledoc """ Provides struct and type for a ToolTextContent """ @type t :: %__MODULE__{text: String.t(), type: String.t()} defstruct [:text, :type] @doc false @spec __fields__(atom) :: keyword def __fields__(type \\ :t) def __fields__(:t) do [text: :string, type: {:const, "text"}] end end