Suggestion

@Serializable
data class Suggestion(val text: String, val type: String, val agent: String, val template: String? = null, val parameters: Parameters)

A suggested action or response from the AI Assistant.

Constructors

Link copied to clipboard
constructor(text: String, type: String, agent: String, template: String? = null, parameters: Parameters)

Properties

Link copied to clipboard

The agent that generated this suggestion.

Link copied to clipboard

Additional parameters for the suggestion.

Link copied to clipboard

Optional template identifier for this suggestion.

Link copied to clipboard

The display text for the suggestion.

Link copied to clipboard

The type of suggestion (e.g., "action", "response").