blob: 00809645396845de985206e240e3a47aef080fec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* Conversation model — the kernel's representation of a dialogue.
*
* Re-exported from @dispatch/wire so the kernel barrel surface stays
* byte-identical. The canonical definitions live in @dispatch/wire.
*/
export type {
ChatMessage,
Chunk,
ErrorChunk,
Role,
StepId,
StoredChunk,
SystemChunk,
TextChunk,
ThinkingChunk,
ToolCallChunk,
ToolResultChunk,
TurnId,
} from "@dispatch/wire";
|