Class: Google::Cloud::AIPlatform::V1::RagFileParsingConfig
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::RagFileParsingConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/vertex_rag_data.rb
Overview
Specifies the parsing config for RagFiles.
Defined Under Namespace
Classes: LayoutParser
Instance Attribute Summary collapse
-
#layout_parser ⇒ ::Google::Cloud::AIPlatform::V1::RagFileParsingConfig::LayoutParser
The Layout Parser to use for RagFiles.
Instance Attribute Details
#layout_parser ⇒ ::Google::Cloud::AIPlatform::V1::RagFileParsingConfig::LayoutParser
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 |
# File 'proto_docs/google/cloud/aiplatform/v1/vertex_rag_data.rb', line 295 class RagFileParsingConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Document AI Layout Parser config. # @!attribute [rw] processor_name # @return [::String] # The full resource name of a Document AI processor or processor version. # The processor must have type `LAYOUT_PARSER_PROCESSOR`. If specified, the # `additional_config.parse_as_scanned_pdf` field must be false. # Format: # * `projects/{project_id}/locations/{location}/processors/{processor_id}` # * `projects/{project_id}/locations/{location}/processors/{processor_id}/processorVersions/{processor_version_id}` # @!attribute [rw] max_parsing_requests_per_min # @return [::Integer] # The maximum number of requests the job is allowed to make to the Document # AI processor per minute. Consult # https://cloud.google.com/document-ai/quotas and the Quota page for your # project to set an appropriate value here. If unspecified, a default value # of 120 QPM would be used. class LayoutParser include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |