Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FactChunk
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FactChunk
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb
Overview
Fact Chunk.
Instance Attribute Summary collapse
-
#chunk_text ⇒ String
Text content of the fact chunk.
-
#index ⇒ Fixnum
The index of this chunk.
-
#source ⇒ String
Source from which this fact chunk was retrieved.
-
#source_metadata ⇒ Hash<String,String>
More fine-grained information for the source reference.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1FactChunk
constructor
A new instance of GoogleCloudDiscoveryengineV1FactChunk.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1FactChunk
Returns a new instance of GoogleCloudDiscoveryengineV1FactChunk.
3251 3252 3253 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 3251 def initialize(**args) update!(**args) end |
Instance Attribute Details
#chunk_text ⇒ String
Text content of the fact chunk. Can be at most 10K characters long.
Corresponds to the JSON property chunkText
3232 3233 3234 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 3232 def chunk_text @chunk_text end |
#index ⇒ Fixnum
The index of this chunk. Currently, only used for the streaming mode.
Corresponds to the JSON property index
3237 3238 3239 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 3237 def index @index end |
#source ⇒ String
Source from which this fact chunk was retrieved. If it was retrieved from the
GroundingFacts provided in the request then this field will contain the index
of the specific fact from which this chunk was retrieved.
Corresponds to the JSON property source
3244 3245 3246 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 3244 def source @source end |
#source_metadata ⇒ Hash<String,String>
More fine-grained information for the source reference.
Corresponds to the JSON property sourceMetadata
3249 3250 3251 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 3249 def @source_metadata end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3256 3257 3258 3259 3260 3261 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 3256 def update!(**args) @chunk_text = args[:chunk_text] if args.key?(:chunk_text) @index = args[:index] if args.key?(:index) @source = args[:source] if args.key?(:source) @source_metadata = args[:source_metadata] if args.key?(:source_metadata) end |