Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ message ConversationEvent {

// An existing conversation has closed. This is fired when a telephone call
// is terminated, or a conversation is closed via the API.
// The event is fired for every CompleteConversation call, even if the
// conversation is already closed.
CONVERSATION_FINISHED = 2;

// An existing conversation has received notification from Dialogflow that
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -543,9 +543,9 @@ message GeneratorEvaluationConfig {
string completeness_evaluation_version = 4
[deprecated = true, (google.api.field_behavior) = OPTIONAL];

// Output only. Version for summarization evaluation.
// Optional. Version for summarization evaluation.
optional string evaluator_version = 5
[(google.api.field_behavior) = OUTPUT_ONLY];
[(google.api.field_behavior) = OPTIONAL];
}

// Required. The config/source of input data.
Expand Down
Loading