Skip to content

Commit 5638dd1

Browse files
author
Bob Strahan
committed
Merge branch 'develop' into fix/assessment-throttling-silent-failure
2 parents 857424c + cdecc57 commit 5638dd1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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]

patterns/pattern-2/src/assessment_function/index.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)