LiveServerToolCallCancellation

@Serializable
data class LiveServerToolCallCancellation(val ids: List<String>? = null)

Notification for the client that a previously issued ToolCallMessage with the specified ids should have been not executed and should be cancelled.

If there were side-effects to those tool calls, clients may attempt to undo the tool calls. This message occurs only in cases where the clients interrupt server turns.

Constructors

Link copied to clipboard
constructor(ids: List<String>? = null)

Properties

Link copied to clipboard
val ids: List<String>? = null

The ids of the tool calls to be cancelled.