Class: LiterLlm::OcrPage

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeOcrPage

Returns a new instance of OcrPage.

Parameters:



502
# File 'sig/types.rbs', line 502

def initialize: (index: Integer, markdown: String, ?images: Array[OcrImage], ?dimensions: PageDimensions) -> void

Instance Attribute Details

#dimensionsPageDimensions? (readonly)

Returns the value of attribute dimensions.

Returns:



500
501
502
# File 'sig/types.rbs', line 500

def dimensions
  @dimensions
end

#imagesArray[OcrImage]? (readonly)

Returns the value of attribute images.

Returns:



499
500
501
# File 'sig/types.rbs', line 499

def images
  @images
end

#indexInteger (readonly)

Returns the value of attribute index.

Returns:

  • (Integer)


497
498
499
# File 'sig/types.rbs', line 497

def index
  @index
end

#markdownString (readonly)

Returns the value of attribute markdown.

Returns:

  • (String)


498
499
500
# File 'sig/types.rbs', line 498

def markdown
  @markdown
end