File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
patterns/pattern-2/src/assessment_function Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ SPDX-License-Identifier: MIT-0
5050 - Fixed Step Function UI issues including auto-refresh button auto-disable and fetch failures for failed executions with datetime serialization errors
5151 - Cleaned up unused Step Function subscription infrastructure and removed duplicate code in Pattern-2 HITL function
5252 - Expanded UI Visual Editor bounding box size with padding for better visibility and user interaction
53+ - Fixed bug in list of models supporting cache points - previously claude 4 sonnet and opus had been excluded.
5354
5455
5556## [ 0.3.14]
Original file line number Diff line number Diff line change @@ -146,8 +146,8 @@ def handler(event, context):
146146 updated_document .status = Status .FAILED
147147 updated_document .errors .append (str (e ))
148148
149- # Assessment validation (for both regular and granular assessment)
150- assessment_enabled = config .get ('assessment. enabled' , False )
149+ # Assessment validation
150+ assessment_enabled = config .get ('assessment' , {}). get ( ' enabled' , False )
151151 if not assessment_enabled :
152152 logger .info ("Assessment is disabled." )
153153 else :
You can’t perform that action at this time.
0 commit comments