Fix Codex transcript convergence
This commit is contained in:
1 parent
f9c8f640ce
commit
3c19b5a9bb
9 files changed
+192
-48
No files matched your search
@@ -156,6 +156,16 @@ pub enum Event {
|
||||
AssistantText {
|
||||
delta: String,
|
||||
},
|
||||
/// The authoritative text of the assistant message whose deltas immediately
|
||||
/// precede this event.
|
||||
///
|
||||
/// Some providers stream a provisional rendering and revise it before the
|
||||
/// item completes. This stays append-only like every other transcript
|
||||
/// correction: readers replace the open message rather than editing an old
|
||||
/// line, and replay therefore reaches the same text as the live stream.
|
||||
AssistantTextFinal {
|
||||
text: String,
|
||||
},
|
||||
ToolStart {
|
||||
id: String,
|
||||
tool: String,
|
||||
|
||||
Reference in new issue
Block a user