public sealed class SearchRequest.Types.ContentSearchSpec.Types.ExtractiveContentSpec : IMessage<SearchRequest.Types.ContentSearchSpec.Types.ExtractiveContentSpec>, IEquatable<SearchRequest.Types.ContentSearchSpec.Types.ExtractiveContentSpec>, IDeepCloneable<SearchRequest.Types.ContentSearchSpec.Types.ExtractiveContentSpec>, IBufferMessage, IMessage
Reference documentation and code samples for the Discovery Engine v1beta API class SearchRequest.Types.ContentSearchSpec.Types.ExtractiveContentSpec.
A specification for configuring the extractive content in a search response.
Implements
IMessageSearchRequestTypesContentSearchSpecTypesExtractiveContentSpec, IEquatableSearchRequestTypesContentSearchSpecTypesExtractiveContentSpec, IDeepCloneableSearchRequestTypesContentSearchSpecTypesExtractiveContentSpec, IBufferMessage, IMessageNamespace
Google.Cloud.DiscoveryEngine.V1BetaAssembly
Google.Cloud.DiscoveryEngine.V1Beta.dll
Constructors
ExtractiveContentSpec()
public ExtractiveContentSpec()
ExtractiveContentSpec(ExtractiveContentSpec)
public ExtractiveContentSpec(SearchRequest.Types.ContentSearchSpec.Types.ExtractiveContentSpec other)
Parameter | |
---|---|
Name | Description |
other | SearchRequestTypesContentSearchSpecTypesExtractiveContentSpec |
Properties
MaxExtractiveAnswerCount
public int MaxExtractiveAnswerCount { get; set; }
The maximum number of extractive answers returned in each search result.
An extractive answer is a verbatim answer extracted from the original document, which provides a precise and contextually relevant answer to the search query.
If the number of matching answers is less than the
max_extractive_answer_count
, return all of the answers. Otherwise,
return the max_extractive_answer_count
.
At most one answer is returned for each [SearchResult][google.cloud.discoveryengine.v1beta.SearchResponse.SearchResult].
Property Value | |
---|---|
Type | Description |
int |
MaxExtractiveSegmentCount
public int MaxExtractiveSegmentCount { get; set; }
The max number of extractive segments returned in each search result. Only applied if the [DataStore][google.cloud.discoveryengine.v1beta.DataStore] is set to [DataStore.ContentConfig.CONTENT_REQUIRED][google.cloud.discoveryengine.v1beta.DataStore.ContentConfig.CONTENT_REQUIRED] or [DataStore.solution_types][google.cloud.discoveryengine.v1beta.DataStore.solution_types] is [SOLUTION_TYPE_CHAT][google.cloud.discoveryengine.v1beta.SolutionType.SOLUTION_TYPE_CHAT].
An extractive segment is a text segment extracted from the original document that is relevant to the search query, and, in general, more verbose than an extractive answer. The segment could then be used as input for LLMs to generate summaries and answers.
If the number of matching segments is less than
max_extractive_segment_count
, return all of the segments. Otherwise,
return the max_extractive_segment_count
.
Currently one segment is returned for each [SearchResult][google.cloud.discoveryengine.v1beta.SearchResponse.SearchResult].
Property Value | |
---|---|
Type | Description |
int |