Replay and Overrides
Replay executions from checkpoints with flow and checkpoint overrides
SDK replay
import kitaru
client = kitaru.KitaruClient()
replayed = client.executions.replay(
"kr-a8f3c2",
from_="write_draft",
topic="New topic",
overrides={
"checkpoint.research": "Edited notes",
},
)
print(replayed.exec_id)
print(replayed.original_exec_id) # points to source executionFlow-object replay
CLI replay
Selector rules
What gets replayed
Override keys
Waits during replay
Divergence
Example in this repository
Related blog posts
Last updated
Was this helpful?