- JSON representation
- AnswerFeedback
- CorrectnessLevel
- AgentAssistantFeedback
- AnswerRelevance
- DocumentCorrectness
- DocumentEfficiency
- SummarizationFeedback
- KnowledgeSearchFeedback
- KnowledgeAssistFeedback
- CompanionFeedback
- AgentAssistantRecord
- DialogflowAssistAnswer
- IntentSuggestion
- ReactiveModeResponse
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:
DetectIntentintent matchingDetectIntentknowledge
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.nameare returned to the customers. - The customer uses the
AnswerRecord.nameto call theAnswerRecords.UpdateAnswerRecordmethod 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: |
answerFeedback |
Required. The AnswerFeedback for this record. You can set this with |
| The record for this answer. The following is a list of mutually exclusive fields. At most one of the fields will be set in a response: | |
agentAssistantRecord |
Output only. The record for human agent assistant. |
| End of mutually exclusive fields. | |
AnswerFeedback
Represents feedback the customer has about the quality & correctness of a certain answer in a conversation.
| JSON representation |
|---|
{ "correctnessLevel": enum ( |
| Fields | |
|---|---|
correctnessLevel |
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. |
clickTime |
Time when the answer/item was clicked. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
displayed |
Indicates whether the answer/item was displayed to the human agent in the agent desktop UI. Default to false. |
displayTime |
Time when the answer/item was displayed. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
| Normally, detail feedback is provided when answer is not fully correct. The following is a list of mutually exclusive fields. At most one of the fields will be set in a response: | |
agentAssistantDetailFeedback |
Detail feedback of agent assist suggestions. |
| End of mutually exclusive fields. | |
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 | |
|---|---|
answerRelevance |
Optional. Whether or not the suggested answer is relevant. For example:
|
documentCorrectness |
Optional. Whether or not the information in the document is correct. For example:
|
documentEfficiency |
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, |
summarizationFeedback |
Optional. Feedback for conversation summarization. |
knowledgeSearchFeedback |
Optional. Feedback for knowledge search. |
knowledgeAssistFeedback |
Optional. Feedback for knowledge assist. |
companionFeedback |
Optional. Feedback for companion agent. |
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 | |
|---|---|
startTime |
Timestamp when composing of the summary starts. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
submitTime |
Timestamp when the summary was submitted. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
summaryText |
Text of actual submitted summary. |
textSections |
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 | |
|---|---|
answerCopied |
Whether the answer was copied by the human agent or not. If the value is set to be true, |
clickedUris[] |
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 | |
|---|---|
answerCopied |
Whether the suggested answer was copied by the human agent. If the value is set to be true, |
clickedUris[] |
The URIs clicked by the human agent. The value is appended for each UpdateAnswerRecordRequest. If the value is not empty, |
CompanionFeedback
This type has no fields.
Feedback for companion agent.
AgentAssistantRecord
Represents a record of a human agent assist answer.
| JSON representation |
|---|
{ // The following is a list of mutually exclusive fields. At most one of the // fields will be set in a response: "articleSuggestionAnswer": { object ( |
| Fields | |
|---|---|
| Output only. The agent assist answer. The following is a list of mutually exclusive fields. At most one of the fields will be set in a response: | |
articleSuggestionAnswer |
Output only. The article suggestion answer. |
faqAnswer |
Output only. The FAQ answer. |
dialogflowAssistAnswer |
Output only. Dialogflow assist answer. |
generatorSuggestion |
Output only. The generator suggestion. |
companionSuggestion |
Output only. The companion suggestion. |
reactiveCompanionSuggestion |
Output only. The reactive companion suggestion. |
| End of mutually exclusive fields. | |
DialogflowAssistAnswer
Represents a Dialogflow assist answer.
| JSON representation |
|---|
{ "answerRecord": string, // The following is a list of mutually exclusive fields. At most one of the // fields will be set in a response: "queryResult": { object ( |
| Fields | |
|---|---|
answerRecord |
The name of answer record, in the format of "projects/ |
| Result from DetectIntent for one matched intent. The following is a list of mutually exclusive fields. At most one of the fields will be set in a response: | |
queryResult |
Result from v2 agent. |
intentSuggestion |
An intent suggestion generated from conversation. |
| End of mutually exclusive fields. | |
IntentSuggestion
Represents an intent suggestion.
| JSON representation |
|---|
{ "displayName": string, "description": string, // The following is a list of mutually exclusive fields. At most one of the // fields will be set in a response: "intentV2": string // End of mutually exclusive fields. } |
| Fields | |
|---|---|
displayName |
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. |
| The name of the intent. The following is a list of mutually exclusive fields. At most one of the fields will be set in a response: | |
intentV2 |
The unique identifier of this |
| End of mutually exclusive fields. | |
ReactiveModeResponse
The complete response generated by the reactive mode capturing the entire accumulated streaming response, grounding metadata, and tool calls.
| JSON representation |
|---|
{ "response": string, "groundingMetadata": { object ( |
| Fields | |
|---|---|
response |
Optional. The full reactive suggestion generated by the Companion Agent. After the last streaming chunk is sent, this is the final response concatenating all the streaming response chunks together to represent the full reactive suggestion. |
groundingMetadata |
Optional. Grounding metadata for the generated response. |
toolCalls[] |
Optional. Captures all the rich structured tool calls and their associated citations used by the reactive agent to generate the reactive suggestion. |