mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
8 lines
471 B
Python
8 lines
471 B
Python
# This map defines the upgrades that are possible to be recommended by the recommendation engine
|
|
# For example,
|
|
# TODO: once we use cleaned descriptions, this should be updated using the cleaned descriptions
|
|
UPGRADES_MAP = {
|
|
'Solid brick, as built, no insulation (assumed)': 'Solid brick, as built, insulated (assumed)',
|
|
'Suspended, no insulation (assumed)': 'Suspended, insulated (assumed)',
|
|
'Solid, no insulation (assumed)': 'Solid, insulated (assumed)',
|
|
}
|