tessl install tessl/pypi-frozendict@2.4.0A simple immutable dictionary implementation with hashing support and performance optimizations
Agent Success
Agent success rate when using this tile
85%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.31x
Baseline
Agent success rate without this tile
65%
{
"context": "This evaluation assesses how well the engineer uses frozendict's index-based access methods (key(), value(), and item()) to implement positional retrieval of configuration items. The focus is on proper usage of these specific frozendict API methods rather than general programming practices.",
"type": "weighted_checklist",
"checklist": [
{
"name": "frozendict instantiation",
"description": "Uses frozendict to store the configuration data in the __init__ method (e.g., self._config = frozendict(config_data))",
"max_score": 20
},
{
"name": "key() method usage",
"description": "Uses frozendict's key(index) method in get_key_at() to retrieve keys by position, correctly passing the index parameter",
"max_score": 25
},
{
"name": "value() method usage",
"description": "Uses frozendict's value(index) method in get_value_at() to retrieve values by position, correctly passing the index parameter",
"max_score": 25
},
{
"name": "item() method usage",
"description": "Uses frozendict's item(index) method in get_item_at() to retrieve key-value tuples by position, correctly passing the index parameter",
"max_score": 25
},
{
"name": "IndexError propagation",
"description": "Allows frozendict's built-in IndexError exceptions to propagate naturally without catching or re-raising them unnecessarily",
"max_score": 5
}
]
}