AI-generated Key Takeaways
-
The Smart Reply API suggests relevant replies to user messages using a SmartReplyGenerator.
-
SmartReply utilizes TextMessage context from conversations to generate reply suggestions.
-
Developers can customize the SmartReplyGenerator using SmartReplyGeneratorOptions.
-
SmartReplySuggestionResult provides the suggested replies along with a status code indicating the outcome of the suggestion attempt.
-
Smart Reply suggestions are encapsulated in SmartReplySuggestion objects.
Annotations
SmartReplySuggestionResult.Status | A possible status code for a Smart Reply suggestion attempt. |
Interfaces
SmartReplyGenerator | A SmartReply
client for suggesting meaningful replies to a user input message. |
Classes
SmartReply | Entry point to get a SmartReplyGenerator
that suggests replies for a given text input. |
SmartReplyGeneratorOptions | Options for SmartReplyGenerator . |
SmartReplyGeneratorOptions.Builder | Builder to create a SmartReplyGeneratorOptions
instance. |
SmartReplySuggestion | A suggested reply to a given text. |
SmartReplySuggestionResult | The suggested result from the SmartReplyGenerator
for the given text. |
TextMessage | Represents a text message from a certain user in a conversation, providing context for SmartReply to generate reply suggestions. |