Files
fil/packages/elixir/lib/kreuzberg/ocr_table.ex
Henrik Jess Nielsen b4c07d3693
All checks were successful
Deploy fil (kreuzberg) / deploy (push) Successful in 49s
Nomad changes
2026-06-01 23:40:55 +02:00

26 lines
748 B
Elixir
Generated

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:4e15143f4af1ae8bafbdb1506ef057da924484c66a19483966333558ad437e75
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
# Issues & docs: https://github.com/kreuzberg-dev/alef
defmodule Kreuzberg.OcrTable do
@moduledoc """
Table detected via OCR.
Represents a table structure recognized during OCR processing.
"""
@typedoc "Table detected via OCR."
@type t :: %__MODULE__{
cells: [[String.t()]],
markdown: String.t() | nil,
page_number: non_neg_integer(),
bounding_box: map() | nil
}
defstruct cells: [],
markdown: nil,
page_number: 0,
bounding_box: nil
end