Class GoogleCloudDiscoveryengineV1CheckGroundingResponseClaim
Text and citation info for a claim in the answer candidate.
Implements
Inherited Members
Namespace: Google.Apis.DiscoveryEngine.v1.Data
Assembly: Google.Apis.DiscoveryEngine.v1.dll
Syntax
public class GoogleCloudDiscoveryengineV1CheckGroundingResponseClaim : IDirectResponseSchema
Properties
CitationIndices
A list of indices (into 'cited_chunks') specifying the citations associated with the claim. For instance [1,3,4] means that cited_chunks[1], cited_chunks[3], cited_chunks[4] are the facts cited supporting for the claim. A citation to a fact indicates that the claim is supported by the fact.
Declaration
[JsonProperty("citationIndices")]
public virtual IList<int?> CitationIndices { get; set; }
Property Value
Type | Description |
---|---|
IList<int?> |
ClaimText
Text for the claim in the answer candidate. Always provided regardless of whether citations or anti-citations are found.
Declaration
[JsonProperty("claimText")]
public virtual string ClaimText { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EndPos
Position indicating the end of the claim in the answer candidate, exclusive.
Declaration
[JsonProperty("endPos")]
public virtual int? EndPos { get; set; }
Property Value
Type | Description |
---|---|
int? |
GroundingCheckRequired
Indicates that this claim required grounding check. When the system decided this claim doesn't require attribution/grounding check, this field will be set to false. In that case, no grounding check was done for the claim and therefore citation_indices, anti_citation_indices, and score should not be returned.
Declaration
[JsonProperty("groundingCheckRequired")]
public virtual bool? GroundingCheckRequired { get; set; }
Property Value
Type | Description |
---|---|
bool? |
StartPos
Position indicating the start of the claim in the answer candidate, measured in bytes.
Declaration
[JsonProperty("startPos")]
public virtual int? StartPos { get; set; }
Property Value
Type | Description |
---|---|
int? |