This commit is contained in:
jif-oai
2025-12-23 11:31:24 +01:00
parent c26c29be9b
commit 39ec8e0906

View File

@@ -1597,7 +1597,9 @@ impl CodexMessageProcessor {
history
.into_iter()
.map(|item| RolloutLine {
timestamp: String::new(),
timestamp: Utc::now()
.format("%Y-%m-%dT%H:%M:%S%.3fZ")
.to_string(),
agent_id: None,
item: RolloutItem::ResponseItem(item),
})
@@ -2311,7 +2313,9 @@ impl CodexMessageProcessor {
history
.into_iter()
.map(|item| RolloutLine {
timestamp: String::new(),
timestamp: Utc::now()
.format("%Y-%m-%dT%H:%M:%S%.3fZ")
.to_string(),
agent_id: None,
item: RolloutItem::ResponseItem(item),
})