Artifacts
Persist named values in checkpoints and reuse them across executions
Inside checkpoints
In flow bodies
summary = research(topic)
return write_report(summary)summary = research(topic)
summary_text = summary.load()
approved = kitaru.wait(
name="approve_summary",
question=f"Approve this summary?\n\n{summary_text}",
schema=bool,
)
return write_report(summary)Outside checkpoints
Artifact types
Example
Name lookup behavior
Try it locally
Last updated
Was this helpful?