tessl install tessl/pypi-asyncstdlib@3.13.0The missing async toolbox - re-implements functions and classes of the Python standard library to make them compatible with async callables, iterables and context managers
Agent Success
Agent success rate when using this tile
84%
Improvement
Agent success rate improvement when using this tile compared to baseline
3.36x
Baseline
Agent success rate without this tile
25%
{
"context": "This criteria evaluates how well an engineer uses asyncstdlib's basic aggregation functions (sum, max, min) to solve an async data processing problem. The focus is on correct usage of these async-compatible functions when working with async iterables.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Uses asyncstdlib.sum()",
"description": "Solution correctly uses asyncstdlib.sum() function to compute the sum of values from the async iterable. The function should be called with the async iterable as the first argument.",
"max_score": 30
},
{
"name": "Uses asyncstdlib.max()",
"description": "Solution correctly uses asyncstdlib.max() function to find the maximum value from the async iterable. The function should be called with the async iterable as the first argument.",
"max_score": 30
},
{
"name": "Uses asyncstdlib.min()",
"description": "Solution correctly uses asyncstdlib.min() function to find the minimum value from the async iterable. The function should be called with the async iterable as the first argument.",
"max_score": 30
},
{
"name": "Handles empty iterables",
"description": "Solution correctly handles empty async iterables by using the default parameter of asyncstdlib's max() and min() functions, or by implementing appropriate fallback logic to return None for max and min when the iterable is empty.",
"max_score": 10
}
]
}