ThinkingChunk
A thinking/reasoning content chunk from the LLM response stream.
Class Diagram
Section titled “Class Diagram”---
title: ThinkingChunk
config:
look: handDrawn
theme: colorful
class:
hideEmptyMembersBox: true
---
classDiagram
class StreamChunk {
<<abstract>>
+string kind
}
StreamChunk <|-- ThinkingChunk
class ThinkingChunk {
+string kind
+string value
}
Yaml Example
Section titled “Yaml Example”value: Let me consider...Properties
Section titled “Properties”| Name | Type | Description |
|---|---|---|
| kind | string | The kind identifier for thinking chunks |
| value | string | The thinking content of the chunk |