public static interface KnowledgeAnswers.AnswerOrBuilder extends MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getAnswer()
The piece of text from the `source` knowledge base document that answers
this conversational query.
|
ByteString |
getAnswerBytes()
The piece of text from the `source` knowledge base document that answers
this conversational query.
|
String |
getFaqQuestion()
The corresponding FAQ question if the answer was extracted from a FAQ
Document, empty otherwise.
|
ByteString |
getFaqQuestionBytes()
The corresponding FAQ question if the answer was extracted from a FAQ
Document, empty otherwise.
|
float |
getMatchConfidence()
The system's confidence score that this Knowledge answer is a good match
for this conversational query.
|
KnowledgeAnswers.Answer.MatchConfidenceLevel |
getMatchConfidenceLevel()
The system's confidence level that this knowledge answer is a good match
for this conversational query.
|
int |
getMatchConfidenceLevelValue()
The system's confidence level that this knowledge answer is a good match
for this conversational query.
|
String |
getSource()
Indicates which Knowledge Document this answer was extracted from.
|
ByteString |
getSourceBytes()
Indicates which Knowledge Document this answer was extracted from.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
isInitialized
String getSource()
Indicates which Knowledge Document this answer was extracted from. Format: `projects/<Project ID>/knowledgeBases/<Knowledge Base ID>/documents/<Document ID>`.
string source = 1 [(.google.api.resource_reference) = { ... }
ByteString getSourceBytes()
Indicates which Knowledge Document this answer was extracted from. Format: `projects/<Project ID>/knowledgeBases/<Knowledge Base ID>/documents/<Document ID>`.
string source = 1 [(.google.api.resource_reference) = { ... }
String getFaqQuestion()
The corresponding FAQ question if the answer was extracted from a FAQ Document, empty otherwise.
string faq_question = 2;
ByteString getFaqQuestionBytes()
The corresponding FAQ question if the answer was extracted from a FAQ Document, empty otherwise.
string faq_question = 2;
String getAnswer()
The piece of text from the `source` knowledge base document that answers this conversational query.
string answer = 3;
ByteString getAnswerBytes()
The piece of text from the `source` knowledge base document that answers this conversational query.
string answer = 3;
int getMatchConfidenceLevelValue()
The system's confidence level that this knowledge answer is a good match for this conversational query. NOTE: The confidence level for a given `<query, answer>` pair may change without notice, as it depends on models that are constantly being improved. However, it will change less frequently than the confidence score below, and should be preferred for referencing the quality of an answer.
.google.cloud.dialogflow.v2beta1.KnowledgeAnswers.Answer.MatchConfidenceLevel match_confidence_level = 4;
KnowledgeAnswers.Answer.MatchConfidenceLevel getMatchConfidenceLevel()
The system's confidence level that this knowledge answer is a good match for this conversational query. NOTE: The confidence level for a given `<query, answer>` pair may change without notice, as it depends on models that are constantly being improved. However, it will change less frequently than the confidence score below, and should be preferred for referencing the quality of an answer.
.google.cloud.dialogflow.v2beta1.KnowledgeAnswers.Answer.MatchConfidenceLevel match_confidence_level = 4;
float getMatchConfidence()
The system's confidence score that this Knowledge answer is a good match for this conversational query. The range is from 0.0 (completely uncertain) to 1.0 (completely certain). Note: The confidence score is likely to vary somewhat (possibly even for identical requests), as the underlying model is under constant improvement. It may be deprecated in the future. We recommend using `match_confidence_level` which should be generally more stable.
float match_confidence = 5;
Copyright © 2022 Google LLC. All rights reserved.