You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,17 @@ SPDX-License-Identifier: MIT-0
6
6
## [Unreleased]
7
7
8
8
### Changed
9
-
-Increased page image limit from 20 to 100 across all IDP services (classification, extraction, assessment) to support processing of longer document sections with large context models following recent Amazon Bedrock API limit increases
9
+
-Removed page image limit entirely across all IDP services (classification, extraction, assessment) following Amazon Bedrock API removal of image count restrictions. The system now processes all document pages without artificial truncation, with info logging to track image counts for monitoring purposes.
10
10
- Resolves #147
11
11
12
+
### Fixed
13
+
14
+
-**Document Schema Builder Enum Support** - Fixed enum value handling in schema builder to properly support enumeration constraints for attribute definitions
15
+
-**Agentic Extraction Parameter Passing** - Fixed temperature and top_p parameters now correctly passed to agentic extraction service, enabling proper model behavior control
16
+
-**Document Schema Builder UI Labels** - Enhanced field labels and formats in document schema builder for improved clarity and user experience
17
+
-**Retry Mechanism Improvements** - Enhanced retry logic for more reliable error handling and recovery across document processing workflows
18
+
-**Type Safety Enhancements** - Improved type annotations and fixed undefined items handling to prevent runtime errors
Copy file name to clipboardExpand all lines: Makefile
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -129,14 +129,14 @@ ui-build:
129
129
130
130
commit: lint test
131
131
$(info Generating commit message...)
132
-
export COMMIT_MESSAGE="$(shell q chat --no-interactive --trust-all-tools "Understand pending local git change and changes to be committed, then infer a commit message. Return this commit message only"| tail -n 1 | sed 's/\x1b\[[0-9;]*m//g')"&&\
132
+
export COMMIT_MESSAGE="$(shell kiro-cli chat --no-interactive --trust-all-tools "Understand pending local git change and changes to be committed, then infer a commit message. Return this commit message only on a single line."| grep ">"| tail -n 1 | sed 's/\x1b\[[0-9;]*m//g')"&&\
133
133
git add .&&\
134
134
git commit -am "$${COMMIT_MESSAGE}"&&\
135
135
git push
136
136
137
137
fastcommit: fastlint
138
138
$(info Generating commit message...)
139
-
export COMMIT_MESSAGE="$(shell q chat --no-interactive --trust-all-tools "Understand pending local git change and changes to be committed, then infer a commit message. Return this commit message only"| tail -n 1 | sed 's/\x1b\[[0-9;]*m//g')"&&\
139
+
export COMMIT_MESSAGE="$(shell kiro-cli chat --no-interactive --trust-all-tools "Understand pending local git change and changes to be committed, then infer a commit message. Return this commit message only on a single line."| grep ">"| tail -n 1 | sed 's/\x1b\[[0-9;]*m//g')"&&\
0 commit comments