Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,9 @@ private Flowable<Event> runOneStep(InvocationContext context) {
.author(context.agent().name())
.branch(context.branch())
.build();
// Explicitly set the event timestamp to 0 so the postprocessing logic would generate
// events with fresh timestamp.
mutableEventTemplate.setTimestamp(0L);

Flowable<Event> restOfFlow =
callLlm(context, llmRequestAfterPreprocess, mutableEventTemplate)
Expand Down