tessl install tessl/pypi-tabulate@0.9.0Pretty-print tabular data in Python with extensive formatting options and output format support.
Agent Success
Agent success rate when using this tile
69%
Improvement
Agent success rate improvement when using this tile compared to baseline
0.9x
Baseline
Agent success rate without this tile
77%
{
"context": "This criteria evaluates how well the engineer uses the tabulate package's simple_separated_format() function to create custom table formats with different column separators. The focus is on proper usage of this specific API to generate tables with custom delimiters.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Uses simple_separated_format",
"description": "Implementation correctly uses the simple_separated_format() function from the tabulate package to create custom table formats",
"max_score": 40
},
{
"name": "Passes separator parameter",
"description": "Implementation correctly passes the separator argument to simple_separated_format() to customize the column delimiter",
"max_score": 20
},
{
"name": "Uses tabulate function",
"description": "Implementation correctly uses the tabulate() function with the custom format returned by simple_separated_format() via the tablefmt parameter",
"max_score": 25
},
{
"name": "Handles headers correctly",
"description": "Implementation correctly extracts and uses headers from the input data using the headers='keys' parameter or equivalent when working with dictionaries",
"max_score": 15
}
]
}