ReasoningDelta

data class ReasoningDelta(val id: String? = null, val text: String? = null, val summary: String? = null, val index: Int? = null) : StreamFrame.DeltaFrame, StreamFrame(source)

Represents a frame of a streaming response from a LLM with reasoning text delta.

Constructors

Link copied to clipboard
constructor(id: String? = null, text: String? = null, summary: String? = null, index: Int? = null)

Properties

Link copied to clipboard
val id: String?

The id of the reasoning text.

Link copied to clipboard
open override val index: Int?

The index of the frame in the list of frames.

Link copied to clipboard

The summary of the reasoning text.

Link copied to clipboard
val text: String?

The text to append to the reasoning text.