Skip to content

Commit d99e681

Browse files
committed
fix: document ProgressMessage
1 parent a64af29 commit d99e681

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

docs/protocol.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,15 @@ interface TextContent {
402402
text: string;
403403
}
404404

405+
/**
406+
* Progress messages from the LLM.
407+
*/
408+
interface ProgressContent {
409+
type: 'progress';
410+
state: 'running|finished';
411+
text: string;
412+
}
413+
405414
/**
406415
* A reason started from the LLM
407416
*

0 commit comments

Comments
 (0)