list_completions
Retrieve completed jobs since a given timestamp, ordered oldest first. Pass the largest finished_at value to poll for new results.
Instructions
Jobs whose finished_at > since, oldest first.
Use since=0 for "everything that ever finished". For ongoing
polling, track the largest finished_at you've seen and pass it
as the next since. Cheap and non-blocking — safe to call at the
start of every turn / iteration to surface "anything new?".
Returns {completions: [<get_dispatch shape>, ...]} with
finished_at present on each entry. raw is omitted; fetch
full payloads via get_dispatch(job_id).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| since | No | ||
| limit | No |