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