- JSON representation
- AnswerFeedback
- CorrectnessLevel
- AgentAssistantFeedback
- AnswerRelevance
- DocumentCorrectness
- DocumentEfficiency
- SummarizationFeedback
- KnowledgeSearchFeedback
- KnowledgeAssistFeedback
- AgentAssistantRecord
- DialogflowAssistAnswer
- IntentSuggestion
Answer records are records to manage answer history and feedbacks for Dialogflow.
Currently, answer record includes:
- human agent assistant article suggestion
- human agent assistant faq article
It doesn't include:
DetectIntent
intent matchingDetectIntent
knowledge
Answer records are not related to the conversation history in the Dialogflow Console. A Record is generated even when the end-user disables conversation history in the console. Records are created when there's a human agent assistant suggestion generated.
A typical workflow for customers provide feedback to an answer is:
- For human agent assistant, customers get suggestion via suggestions.list API. Together with the answers,
AnswerRecord.name
are returned to the customers. - The customer uses the
AnswerRecord.name
to call the [UpdateAnswerRecord][] method to send feedback about a specific answer that they believe is wrong.
JSON representation |
---|
{ "name": string, "answerFeedback": { object ( |
Fields | |
---|---|
name |
The unique identifier of this answer record. Format: |
answer |
Required. The AnswerFeedback for this record. You can set this with |
Union field record . The record for this answer. record can be only one of the following: |
|
agent |
Output only. The record for human agent assistant. |
AnswerFeedback
Represents feedback the customer has about the quality & correctness of a certain answer in a conversation.
JSON representation |
---|
{ "correctnessLevel": enum ( |
Fields | |
---|---|
correctness |
The correctness level of the specific answer. |
clicked |
Indicates whether the answer/item was clicked by the human agent or not. Default to false. For knowledge search and knowledge assist, the answer record is considered to be clicked if the answer was copied or any URI was clicked. |
click |
Time when the answer/item was clicked. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
displayed |
Indicates whether the answer/item was displayed to the human agent in the agent desktop UI. Default to false. |
display |
Time when the answer/item was displayed. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
Union field detail_feedback . Normally, detail feedback is provided when answer is not fully correct. detail_feedback can be only one of the following: |
|
agent |
Detail feedback of agent assist suggestions. |
CorrectnessLevel
The correctness level of an answer.
Enums | |
---|---|
CORRECTNESS_LEVEL_UNSPECIFIED |
Correctness level unspecified. |
NOT_CORRECT |
Answer is totally wrong. |
PARTIALLY_CORRECT |
Answer is partially correct. |
FULLY_CORRECT |
Answer is fully correct. |
AgentAssistantFeedback
Detail feedback of Agent Assist result.
JSON representation |
---|
{ "answerRelevance": enum ( |
Fields | |
---|---|
answer |
Optional. Whether or not the suggested answer is relevant. For example:
|
document |
Optional. Whether or not the information in the document is correct. For example:
|
document |
Optional. Whether or not the suggested document is efficient. For example, if the document is poorly written, hard to understand, hard to use or too long to find useful information, |
summarization |
Optional. Feedback for conversation summarization. |
knowledge |
Optional. Feedback for knowledge search. |
knowledge |
Optional. Feedback for knowledge assist. |
AnswerRelevance
Relevance of an answer.
Enums | |
---|---|
ANSWER_RELEVANCE_UNSPECIFIED |
Answer relevance unspecified. |
IRRELEVANT |
Answer is irrelevant to query. |
RELEVANT |
Answer is relevant to query. |
DocumentCorrectness
Correctness of document.
Enums | |
---|---|
DOCUMENT_CORRECTNESS_UNSPECIFIED |
Document correctness unspecified. |
INCORRECT |
Information in document is incorrect. |
CORRECT |
Information in document is correct. |
DocumentEfficiency
Efficiency of document.
Enums | |
---|---|
DOCUMENT_EFFICIENCY_UNSPECIFIED |
Document efficiency unspecified. |
INEFFICIENT |
Document is inefficient. |
EFFICIENT |
Document is efficient. |
SummarizationFeedback
Feedback for conversation summarization.
JSON representation |
---|
{ "startTime": string, "submitTime": string, "summaryText": string, "textSections": { string: string, ... } } |
Fields | |
---|---|
start |
Timestamp when composing of the summary starts. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
submit |
Timestamp when the summary was submitted. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
summary |
Text of actual submitted summary. |
text |
Optional. Actual text sections of submitted summary. An object containing a list of |
KnowledgeSearchFeedback
Feedback for knowledge search.
JSON representation |
---|
{ "answerCopied": boolean, "clickedUris": [ string ] } |
Fields | |
---|---|
answer |
Whether the answer was copied by the human agent or not. If the value is set to be true, |
clicked |
The URIs clicked by the human agent. The value is appended for each |
KnowledgeAssistFeedback
Feedback for knowledge assist.
JSON representation |
---|
{ "answerCopied": boolean, "clickedUris": [ string ] } |
Fields | |
---|---|
answer |
Whether the suggested answer was copied by the human agent. If the value is set to be true, |
clicked |
The URIs clicked by the human agent. The value is appended for each UpdateAnswerRecordRequest. If the value is not empty, |
AgentAssistantRecord
Represents a record of a human agent assist answer.
JSON representation |
---|
{ // Union field |
Fields | |
---|---|
Union field answer . Output only. The agent assist answer. answer can be only one of the following: |
|
article |
Output only. The article suggestion answer. |
faq |
Output only. The FAQ answer. |
dialogflow |
Output only. Dialogflow assist answer. |
DialogflowAssistAnswer
Represents a Dialogflow assist answer.
JSON representation |
---|
{ "answerRecord": string, // Union field |
Fields | |
---|---|
answer |
The name of answer record, in the format of "projects/ |
Union field result . Result from DetectIntent for one matched intent. result can be only one of the following: |
|
query |
Result from v2 agent. |
intent |
An intent suggestion generated from conversation. |
IntentSuggestion
Represents an intent suggestion.
JSON representation |
---|
{ "displayName": string, "description": string, // Union field |
Fields | |
---|---|
display |
The display name of the intent. |
description |
Human readable description for better understanding an intent like its scope, content, result etc. Maximum character limit: 140 characters. |
Union field intent . The name of the intent. intent can be only one of the following: |
|
intent |
The unique identifier of this |