Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ProcessorVersionGenAiModelInfo
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ProcessorVersionGenAiModelInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/documentai_v1beta3/classes.rb,
lib/google/apis/documentai_v1beta3/representations.rb,
lib/google/apis/documentai_v1beta3/representations.rb
Overview
Information about Generative AI model-based processor versions.
Instance Attribute Summary collapse
-
#custom_gen_ai_model_info ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ProcessorVersionGenAiModelInfoCustomGenAiModelInfo
Information for a custom Generative AI model created by the user.
-
#foundation_gen_ai_model_info ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ProcessorVersionGenAiModelInfoFoundationGenAiModelInfo
Information for a pretrained Google-managed foundation model.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiUiv1beta3ProcessorVersionGenAiModelInfo
constructor
A new instance of GoogleCloudDocumentaiUiv1beta3ProcessorVersionGenAiModelInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiUiv1beta3ProcessorVersionGenAiModelInfo
Returns a new instance of GoogleCloudDocumentaiUiv1beta3ProcessorVersionGenAiModelInfo.
2102 2103 2104 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 2102 def initialize(**args) update!(**args) end |
Instance Attribute Details
#custom_gen_ai_model_info ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ProcessorVersionGenAiModelInfoCustomGenAiModelInfo
Information for a custom Generative AI model created by the user. These are
created with Create New Version in either the Call foundation model or
Fine tuning tabs.
Corresponds to the JSON property customGenAiModelInfo
2095 2096 2097 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 2095 def custom_gen_ai_model_info @custom_gen_ai_model_info end |
#foundation_gen_ai_model_info ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ProcessorVersionGenAiModelInfoFoundationGenAiModelInfo
Information for a pretrained Google-managed foundation model.
Corresponds to the JSON property foundationGenAiModelInfo
2100 2101 2102 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 2100 def foundation_gen_ai_model_info @foundation_gen_ai_model_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2107 2108 2109 2110 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 2107 def update!(**args) @custom_gen_ai_model_info = args[:custom_gen_ai_model_info] if args.key?(:custom_gen_ai_model_info) @foundation_gen_ai_model_info = args[:foundation_gen_ai_model_info] if args.key?(:foundation_gen_ai_model_info) end |