RunFinished

@Serializable
@SerialName(value = "RUN_FINISHED")
data class RunFinished(val threadId: String, val runId: String, val outcome: String? = null, val interrupts: List<Interrupt> = emptyList(), val timestamp: Long? = null) : AguiEvent

Constructors

Link copied to clipboard
constructor(threadId: String, runId: String, outcome: String? = null, interrupts: List<Interrupt> = emptyList(), timestamp: Long? = null)

Properties

Link copied to clipboard
Link copied to clipboard

One of "success" / "interrupt" per the draft interrupt spec; optional for legacy runs.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val timestamp: Long?