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 criteria evaluates how well the engineer uses frozendict's deep freezing functionality to create immutable configuration snapshots. The focus is on proper usage of deepfreeze(), register(), and getFreezeConversionMap() functions.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Uses deepfreeze function",
"description": "The create_snapshot function correctly imports and uses deepfreeze() from frozendict to recursively convert the configuration dictionary to immutable form",
"max_score": 30
},
{
"name": "Passes correct parameters",
"description": "The deepfreeze() function is called with the config parameter, and optional custom_converters parameter is used if needed",
"max_score": 15
},
{
"name": "Uses register function",
"description": "The register_config_type function correctly imports and uses register() from frozendict to register the custom type converter",
"max_score": 25
},
{
"name": "Correct register parameters",
"description": "The register() function is called with the type_class as the first parameter and converter_func as the second parameter",
"max_score": 15
},
{
"name": "Uses getFreezeConversionMap",
"description": "The get_converter_info function correctly imports and uses getFreezeConversionMap() from frozendict to retrieve the conversion mappings",
"max_score": 15
}
]
}