GenerateStatelessSummaryResponse

The response message for Conversations.GenerateStatelessSummary.

JSON representation
{
  "summary": {
    object (Summary)
  },
  "latestMessage": string,
  "contextSize": integer
}
Fields
summary

object (Summary)

Generated summary.

latestMessage

string

The name of the latest conversation message used as context for compiling suggestion. The format is specific to the user and the names of the messages provided.

contextSize

integer

Number of messages prior to and including [last_conversation_message][] used to compile the suggestion. It may be smaller than the [GenerateStatelessSummaryRequest.context_size][] field in the request if there weren't that many messages in the conversation.

Summary

Generated summary for a conversation.

JSON representation
{
  "text": string,
  "textSections": {
    string: string,
    ...
  },
  "baselineModelVersion": string
}
Fields
text

string

The summary content that is concatenated into one string.

textSections

map (key: string, value: string)

The summary content that is divided into sections. The key is the section's name and the value is the section's content. There is no specific format for the key or value.

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

baselineModelVersion

string

The baseline model version used to generate this summary. It is empty if a baseline model was not used to generate this summary.