Commit ·
20f9c98
1
Parent(s): 4dae5fa
Bump _hf_repos limit 500→2000 to cover full catalog
Browse files
app.py
CHANGED
|
@@ -175,7 +175,7 @@ def _parse_mode_from_json_col(cell: object) -> str:
|
|
| 175 |
def _hf_repos() -> set[str]:
|
| 176 |
try:
|
| 177 |
api = HfApi()
|
| 178 |
-
repos = api.list_datasets(author=HF_ORG, limit=
|
| 179 |
return {r.id.split("/", 1)[-1] for r in repos}
|
| 180 |
except (HfHubHTTPError, Exception): # noqa: BLE001
|
| 181 |
return set()
|
|
|
|
| 175 |
def _hf_repos() -> set[str]:
|
| 176 |
try:
|
| 177 |
api = HfApi()
|
| 178 |
+
repos = api.list_datasets(author=HF_ORG, limit=2000)
|
| 179 |
return {r.id.split("/", 1)[-1] for r in repos}
|
| 180 |
except (HfHubHTTPError, Exception): # noqa: BLE001
|
| 181 |
return set()
|