Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/app/api/docs/assessment/get_dataset.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ Get a single assessment dataset by ID.

Optionally include a signed URL to download the original uploaded file.

Pass `limit_rows=N` (1-100) to additionally include a lightweight preview
Pass `limit_rows=N` (1-2000) to additionally include a lightweight preview
of the dataset's column headers and the first N data rows. When omitted,
the underlying file is not fetched and the response stays small.
2 changes: 1 addition & 1 deletion backend/app/api/routes/assessment/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def get_dataset(
int | None,
Query(
ge=1,
le=100,
le=2000,
description=(
"If set, fetch the underlying file and include a preview of the "
"first N data rows plus column headers. Skip to avoid the file "
Expand Down
Loading