Current section

Files

Jump to
liter_llm lib liter_llm ocr_response.ex
Raw

lib/liter_llm/ocr_response.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:de9738d1a2c1e8c5eacecbd4da06878683f3650e2b3bcc2ce0cb163d94f425f0
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
# Issues & docs: https://github.com/sample_crate-dev/alef
defmodule LiterLlm.OcrResponse do
@moduledoc "An OCR response."
@typedoc "An OCR response."
@type t :: %__MODULE__{
pages: [map()],
model: String.t() | nil,
usage: map() | nil
}
defstruct pages: [],
model: nil,
usage: nil
end