LiveClientMessage

@Serializable
data class LiveClientMessage(val setup: LiveClientSetup? = null, val clientContent: LiveClientContent? = null, val realtimeInput: LiveClientRealtimeInput? = null, val toolResponse: LiveClientToolResponse? = null)

Messages sent by the client in the API call.

Constructors

Link copied to clipboard
constructor(setup: LiveClientSetup? = null, clientContent: LiveClientContent? = null, realtimeInput: LiveClientRealtimeInput? = null, toolResponse: LiveClientToolResponse? = null)

Properties

Link copied to clipboard

Incremental update of the current conversation delivered from the client.

Link copied to clipboard

User input that is sent in real time.

Link copied to clipboard
val setup: LiveClientSetup? = null

Message to be sent by the system when connecting to the API. SDK users should not send this message.

Link copied to clipboard

Response to a ToolCallMessage received from the server.