mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-30 13:10:47 +00:00
Clarify REFETCH_EPC/REPREDICT_EPC comments — both flags skip-if-stored, not never-fetch
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
5c3bde0cf5
commit
b1fd9d9368
1 changed files with 6 additions and 4 deletions
|
|
@ -45,12 +45,14 @@ DRY_RUN: bool = False
|
|||
# False → Lambda skips the Google Solar fetch (re-uses stored Solar data).
|
||||
REFETCH_SOLAR: bool = True
|
||||
|
||||
# False → Lambda re-uses stored lodged EPCs instead of calling the EPC API
|
||||
# (falls back to live API call when no stored EPC exists for a property).
|
||||
# False → skip the EPC API call for properties that already have a stored lodged
|
||||
# EPC; the API is still called for any property that has no stored lodged EPC.
|
||||
REFETCH_EPC: bool = True
|
||||
|
||||
# False → Lambda re-uses stored predicted EPCs instead of re-running prediction
|
||||
# (falls back to live prediction when no stored predicted EPC exists).
|
||||
# False → skip live EPC prediction for properties that already have a stored
|
||||
# predicted EPC; live prediction still runs for any property that reaches the
|
||||
# prediction branch with no stored predicted EPC. Only relevant for properties
|
||||
# without a lodged EPC (either stored or freshly fetched).
|
||||
REPREDICT_EPC: bool = True
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue