Class: Google::Cloud::DiscoveryEngine::V1beta::NaturalLanguageQueryUnderstandingConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/discoveryengine/v1beta/data_store.rb

Overview

Configuration for Natural Language Query Understanding.

Defined Under Namespace

Modules: Mode

Instance Attribute Summary collapse

Instance Attribute Details

#mode::Google::Cloud::DiscoveryEngine::V1beta::NaturalLanguageQueryUnderstandingConfig::Mode

Returns Mode of Natural Language Query Understanding. If this field is unset, the behavior defaults to NaturalLanguageQueryUnderstandingConfig.Mode.DISABLED.

Returns:



192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
# File 'proto_docs/google/cloud/discoveryengine/v1beta/data_store.rb', line 192

class NaturalLanguageQueryUnderstandingConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Mode of Natural Language Query Understanding. When the
  # NaturalLanguageQueryUnderstandingConfig.Mode is ENABLED, the natural
  # language understanding capabilities will be enabled for a search request if
  # the NaturalLanguageQueryUnderstandingSpec.FilterExtractionCondition in the
  # SearchRequest is ENABLED.
  module Mode
    # Default value.
    MODE_UNSPECIFIED = 0

    # Natural Language Query Understanding is disabled.
    DISABLED = 1

    # Natural Language Query Understanding is enabled.
    ENABLED = 2
  end
end