Skip to content

Commit 0b0044b

Browse files
authored
Merge pull request #32 from tomgeorge/document-progress-message
fix: document ProgressMessage
2 parents a64af29 + d99e681 commit 0b0044b

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)