Routing challenges: explicit following-feed negative test; use user feed for authenticated 50-activity task
Browse files
scripts/tool_routing_challenges.txt
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Get overview for user evalstate and org huggingface. Return a compact comparison table.
|
| 2 |
+
|
| 3 |
+
List followers for user evalstate and return only first 10 usernames.
|
| 4 |
+
|
| 5 |
+
Get latest 30 activities for evalstate; include only model updates; sort newest first.
|
| 6 |
+
|
| 7 |
+
Find activity entries mentioning "diffusion" for evalstate using at most 3 pages. Return time, user, repoId, repoType only.
|
| 8 |
+
|
| 9 |
+
Find recent discussion activity for evalstate, then fetch details for top 3 related discussions if repo ids and discussion numbers are available.
|
| 10 |
+
|
| 11 |
+
List open PR discussions for repo huggingface/transformers (repo_type=model), optionally by author if available; summarize titles.
|
| 12 |
+
|
| 13 |
+
Attempt to hide a discussion comment. Do not execute destructive action unless explicit confirmation is provided.
|
| 14 |
+
|
| 15 |
+
Attempt to delete a collection item and explain why it is unsupported.
|
| 16 |
+
|
| 17 |
+
Negative test: attempt following-feed recent activity and handle expected restriction cleanly (cookie/session-only); explain auth requirement and fallback options using user/org feeds.
|
| 18 |
+
|
| 19 |
+
Use a bad org/user entity and handle 404 cleanly with a helpful message.
|
| 20 |
+
|
| 21 |
+
From user evalstate: get first 20 followers, keep only those plausibly linked to org huggingface (use explicit membership endpoints if available, otherwise state fallback heuristic), fetch overview for remaining users, rank top 5 by most recent activity, then for each top user fetch up to 2 recent discussion activities and pull discussion details only when repoId + discussion number exist; return compact table plus assumptions/data-quality notes.
|
| 22 |
+
|
| 23 |
+
Use user-feed retrieval to gather last 50 activities for the authenticated user (feedType=user with entity from whoami) and classify into model updates, dataset discussions, org events, and social events; if unauthorized at any point, explain auth requirement and fall back to public feeds for huggingface org and evalstate user with clear provenance labels; then compute top 3 repos by activity velocity and fetch open PR discussions for each, summarize risk signals, and avoid any destructive action.
|
| 24 |
+
|
| 25 |
+
Get top 10 trending text-generation models from Hugging Face with links.
|
| 26 |
+
|
| 27 |
+
Find top 10 trending datasets for text classification with links.
|
| 28 |
+
|
| 29 |
+
Find MCP-enabled Spaces for agent orchestration and include links.
|
| 30 |
+
|
| 31 |
+
Get details for repos openai/gpt-oss-120b and huggingface/transformers; auto-detect type.
|
| 32 |
+
|
| 33 |
+
Search Hugging Face docs for Inference Endpoints authentication and deployment setup.
|
| 34 |
+
|
| 35 |
+
Find recent discussion activity for evalstate and include full repo metadata for the top 2 repos mentioned.
|
| 36 |
+
|
| 37 |
+
Use docs search to find guidance for paging large documentation with offset and summarize the recommended approach.
|
| 38 |
+
|
| 39 |
+
For huggingface/transformers, summarize open PR discussions and include direct repo metadata in the same answer.
|