Class: Google::Cloud::DiscoveryEngine::V1::CheckGroundingResponse::Claim
- Inherits:
-
Object
- Object
- Google::Cloud::DiscoveryEngine::V1::CheckGroundingResponse::Claim
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/discoveryengine/v1/grounded_generation_service.rb
Overview
Text and citation info for a claim in the answer candidate.
Instance Attribute Summary collapse
-
#citation_indices ⇒ ::Array<::Integer>
A list of indices (into 'cited_chunks') specifying the citations associated with the claim.
-
#claim_text ⇒ ::String
Text for the claim in the answer candidate.
-
#end_pos ⇒ ::Integer
Position indicating the end of the claim in the answer candidate, exclusive, in bytes.
-
#grounding_check_required ⇒ ::Boolean
Indicates that this claim required grounding check.
-
#start_pos ⇒ ::Integer
Position indicating the start of the claim in the answer candidate, measured in bytes.
Instance Attribute Details
#citation_indices ⇒ ::Array<::Integer>
Returns 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.
604 605 606 607 |
# File 'proto_docs/google/cloud/discoveryengine/v1/grounded_generation_service.rb', line 604 class Claim include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#claim_text ⇒ ::String
Returns Text for the claim in the answer candidate. Always provided regardless of whether citations or anti-citations are found.
604 605 606 607 |
# File 'proto_docs/google/cloud/discoveryengine/v1/grounded_generation_service.rb', line 604 class Claim include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#end_pos ⇒ ::Integer
Returns Position indicating the end of the claim in the answer candidate, exclusive, in bytes. Note that this is not measured in characters and, therefore, must be rendered as such. For example, if the claim text contains non-ASCII characters, the start and end positions vary when measured in characters (programming-language-dependent) and when measured in bytes (programming-language-independent).
604 605 606 607 |
# File 'proto_docs/google/cloud/discoveryengine/v1/grounded_generation_service.rb', line 604 class Claim include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#grounding_check_required ⇒ ::Boolean
Returns 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 should not be returned.
604 605 606 607 |
# File 'proto_docs/google/cloud/discoveryengine/v1/grounded_generation_service.rb', line 604 class Claim include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#start_pos ⇒ ::Integer
Returns Position indicating the start of the claim in the answer candidate, measured in bytes. Note that this is not measured in characters and, therefore, must be rendered in the user interface keeping in mind that some characters may take more than one byte. For example, if the claim text contains non-ASCII characters, the start and end positions vary when measured in characters (programming-language-dependent) and when measured in bytes (programming-language-independent).
604 605 606 607 |
# File 'proto_docs/google/cloud/discoveryengine/v1/grounded_generation_service.rb', line 604 class Claim include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |