For the complete documentation index, see llms.txt. This page is also available as Markdown.

Pagination

Pagination over large list endpoints.

# Iterator (preferred)
for page in client.evaluations.iter_pages(page_size=100):
 for e in page: process(e)

# Manual cursor
cursor = None
while True:
 res = client.evaluations.list(cursor=cursor, page_size=100)
 for e in res.items: process(e)
 if not res.next_cursor: break
 cursor = res.next_cursor

See also

Last updated

Was this helpful?