Current section

Files

Jump to
liter_llm lib liter_llm ocr_image.ex
Raw

lib/liter_llm/ocr_image.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:52effca2513e1c5f8a9a5b90a372d645388de4b92e4f822acc38d97502c322b6
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule LiterLlm.OcrImage do
@moduledoc "An image extracted from an OCR page."
@typedoc "An image extracted from an OCR page."
@type t :: %__MODULE__{
id: String.t() | nil,
image_base64: String.t() | nil
}
defstruct id: nil,
image_base64: nil
end