Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
SDK methods for the Task Runs resource.
verial.taskRuns.list({ runId, cursor?, limit? }) verial.taskRuns.get({ id }) verial.taskRuns.complete({ id }) verial.taskRuns.cancel({ id })
for await (const tr of await verial.taskRuns.list({ runId: 'run_01H...' })) { console.log(tr.id, tr.phase, tr.verdict, tr.score) } await verial.taskRuns.complete({ id: 'tr_01H...' })