Returns a paginated list of runs for the given projects within min/max
start_time. Supports filters, cursor pagination, and selects to select fields
to return.
Self-hosted deployments require LangSmith v0.16 or later.
queryV2(
params: RunQueryV2Params,
options: RequestOptions
): PagePromise<RunsItemsCursorPostPagination, Run>| Name | Type | Description |
|---|---|---|
params* | RunQueryV2Params | |
options | RequestOptions |
// Automatically fetches more pages as needed.
for await (const run of client.runs.queryV2()) {
// ...
}