Skip to content

Commit 88402d9

Browse files
author
Taniya Mathur
committed
merging develop
2 parents 6e1b876 + b69fec4 commit 88402d9

File tree

30 files changed

+1984
-778
lines changed

30 files changed

+1984
-778
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,21 @@ SPDX-License-Identifier: MIT-0
1515
- **IDP CLI --no-rollback Flag for Stack Deployment Troubleshooting**
1616
- Added `--no-rollback` flag to `idp-cli deploy` command to disable automatic rollback on CloudFormation stack creation failure
1717
- When enabled, failed stacks remain in `CREATE_FAILED` state instead of rolling back, allowing inspection of failed resources for troubleshooting
18+
1819
- **Add support for prompt caching for Claude Haiku 4.5**
20+
1921
- **Add support for prompt caching for for EU region models**
2022

2123
### Fixed
2224

2325
- **Analytics Agent Schema Provider - Fixed Nested Attribute Column Display**
2426
- Fixed `schema_provider.py` to correctly display leaf-level nested columns instead of showing group-level attributes
2527

28+
- **IDP Agent Companion Chat UX improvements**
29+
- Improved speed of rendering chat response by buffering the agent tool responses.
30+
- Displaying agent tool queries and results in a modal with formatted results.
31+
32+
2633
### Templates
2734
- us-west-2: `https://s3.us-west-2.amazonaws.com/aws-ml-blog-us-west-2/artifacts/genai-idp/idp-main_0.4.4.yaml`
2835
- us-east-1: `https://s3.us-east-1.amazonaws.com/aws-ml-blog-us-east-1/artifacts/genai-idp/idp-main_0.4.4.yaml`

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.4-wip1
1+
0.4.5-wip1

config_library/pattern-1/lending-package-sample/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ agents:
300300
time_range_hours_default: 24
301301

302302
chat_companion:
303-
model_id: us.anthropic.claude-sonnet-4-20250514-v1:0
303+
model_id: us.anthropic.claude-haiku-4-5-20251001-v1:0
304304
pricing:
305305
- name: bda/documents-custom
306306
units:

config_library/pattern-2/bank-statement-sample/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ agents:
790790
time_range_hours_default: 24
791791

792792
chat_companion:
793-
model_id: us.anthropic.claude-sonnet-4-20250514-v1:0
793+
model_id: us.anthropic.claude-haiku-4-5-20251001-v1:0
794794
pricing:
795795
- name: textract/detect_document_text
796796
units:

config_library/pattern-2/criteria-validation/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ agents:
382382
time_range_hours_default: 24
383383

384384
chat_companion:
385-
model_id: us.anthropic.claude-sonnet-4-20250514-v1:0
385+
model_id: us.anthropic.claude-haiku-4-5-20251001-v1:0
386386
# Pricing configuration for cost tracking
387387
pricing:
388388
- name: textract/detect_document_text

config_library/pattern-2/lending-package-sample/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1813,7 +1813,7 @@ agents:
18131813
time_range_hours_default: 24
18141814

18151815
chat_companion:
1816-
model_id: us.anthropic.claude-sonnet-4-20250514-v1:0
1816+
model_id: us.anthropic.claude-haiku-4-5-20251001-v1:0
18171817
pricing:
18181818
- name: textract/detect_document_text
18191819
units:

config_library/pattern-2/rvl-cdip-package-sample-with-few-shot-examples/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1435,7 +1435,7 @@ agents:
14351435
time_range_hours_default: 24
14361436

14371437
chat_companion:
1438-
model_id: us.anthropic.claude-sonnet-4-20250514-v1:0
1438+
model_id: us.anthropic.claude-haiku-4-5-20251001-v1:0
14391439
pricing:
14401440
- name: textract/detect_document_text
14411441
units:

config_library/pattern-2/rvl-cdip-package-sample/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1455,7 +1455,7 @@ agents:
14551455
time_range_hours_default: 24
14561456

14571457
chat_companion:
1458-
model_id: us.anthropic.claude-sonnet-4-20250514-v1:0
1458+
model_id: us.anthropic.claude-haiku-4-5-20251001-v1:0
14591459
pricing:
14601460
- name: textract/detect_document_text
14611461
units:

config_library/pattern-3/rvl-cdip-package-sample/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1314,7 +1314,7 @@ agents:
13141314
time_range_hours_default: 24
13151315

13161316
chat_companion:
1317-
model_id: us.anthropic.claude-sonnet-4-20250514-v1:0
1317+
model_id: us.anthropic.claude-haiku-4-5-20251001-v1:0
13181318
pricing:
13191319
- name: textract/detect_document_text
13201320
units:

idp_cli/idp_cli/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def _build_from_local_code(from_code_dir: str, region: str, stack_name: str) ->
142142

143143

144144
@click.group()
145-
@click.version_option(version="0.4.4")
145+
@click.version_option(version="0.4.5")
146146
def cli():
147147
"""
148148
IDP CLI - Batch document processing for IDP Accelerator

0 commit comments

Comments
 (0)