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:9c479751c0805b45ce76a17491cc7b1b4c87a95d35e5ac93b5d5d0ac4b974284
# 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