Class: Google::Cloud::AIPlatform::V1::GenAiAdvancedFeaturesConfig
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::GenAiAdvancedFeaturesConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/endpoint.rb
Overview
Configuration for GenAiAdvancedFeatures.
Defined Under Namespace
Classes: RagConfig
Instance Attribute Summary collapse
-
#rag_config ⇒ ::Google::Cloud::AIPlatform::V1::GenAiAdvancedFeaturesConfig::RagConfig
Configuration for Retrieval Augmented Generation feature.
Instance Attribute Details
#rag_config ⇒ ::Google::Cloud::AIPlatform::V1::GenAiAdvancedFeaturesConfig::RagConfig
Returns Configuration for Retrieval Augmented Generation feature.
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 |
# File 'proto_docs/google/cloud/aiplatform/v1/endpoint.rb', line 397 class GenAiAdvancedFeaturesConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Configuration for Retrieval Augmented Generation feature. # @!attribute [rw] enable_rag # @return [::Boolean] # If true, enable Retrieval Augmented Generation in ChatCompletion request. # Once enabled, the endpoint will be identified as GenAI endpoint and # Arthedain router will be used. class RagConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |