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:1c1a4f40437bd3664405b1b60a53b4dc867f8b6f298baac7d0bf32a63ff9e517
# 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