Skip to content

v0.8.1

Latest

Choose a tag to compare

@dhruvbatra dhruvbatra released this 25 Jun 23:54
· 2 commits to main since this release
f442ed7

What's new

Client support for listing one-time tasks, so you can enumerate and recover your task IDs (e.g. re-ingest results after a local data loss).

  • client.browsing.list() / client.research.list() — sync + async — with limit, status (running / succeeded / failed), and cursor keyset pagination, wrapping GET /v1/browsing/tasks and GET /v1/research/tasks.
  • cursor added to client.scouts.list() so all three list methods paginate consistently (next_cursor / prev_cursor).
  • CLI: yutori browse list and yutori research list (paginated tables with status filtering).
for t in client.research.list(status="succeeded")["tasks"]:
    print(t["task_id"], t["created_at"])

Full Changelog: v0.8.0...v0.8.1