ReasoningComplete

data class ReasoningComplete(val id: String?, val content: List<String>, val summary: List<String>? = null, val encrypted: String? = null, val index: Int? = null) : StreamFrame.CompleteFrame, StreamFrame(source)

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

Parameters

encrypted

The encrypted text of the reasoning text.

Constructors

Link copied to clipboard
constructor(id: String?, content: List<String>, summary: List<String>? = null, encrypted: String? = null, index: Int? = null)

Properties

Link copied to clipboard

The text to append to the reasoning text.

Link copied to clipboard
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.