Class GoogleCloudDialogflowV2beta1KnowledgeAnswersAnswer
An answer from Knowledge Connector.
Implements
Inherited Members
Namespace: Google.Apis.Dialogflow.v3.Data
Assembly: Google.Apis.Dialogflow.v3.dll
Syntax
public class GoogleCloudDialogflowV2beta1KnowledgeAnswersAnswer : IDirectResponseSchema
Properties
Answer
The piece of text from the source
knowledge base document that answers this conversational query.
Declaration
[JsonProperty("answer")]
public virtual string Answer { 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 |
FaqQuestion
The corresponding FAQ question if the answer was extracted from a FAQ Document, empty otherwise.
Declaration
[JsonProperty("faqQuestion")]
public virtual string FaqQuestion { get; set; }
Property Value
Type | Description |
---|---|
string |
MatchConfidence
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.
Declaration
[JsonProperty("matchConfidence")]
public virtual float? MatchConfidence { get; set; }
Property Value
Type | Description |
---|---|
float? |
MatchConfidenceLevel
The system's confidence level that this knowledge answer is a good match for this conversational query. NOTE: The confidence level for a given `` 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.
Declaration
[JsonProperty("matchConfidenceLevel")]
public virtual string MatchConfidenceLevel { get; set; }
Property Value
Type | Description |
---|---|
string |
Source
Indicates which Knowledge Document this answer was extracted from. Format:
projects//knowledgeBases//documents/
.
Declaration
[JsonProperty("source")]
public virtual string Source { get; set; }
Property Value
Type | Description |
---|---|
string |