Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/developer-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,8 @@ jobs:
output: both
thresholds: '60 80'

- name: Add Coverage PR Comment
uses: marocchino/sticky-pull-request-comment@v2
if: github.event_name == 'pull_request' && hashFiles('code-coverage-results.md') != ''
with:
recreate: true
path: code-coverage-results.md
# Note: PR comments disabled for fork PRs due to permission restrictions
# Coverage results are available in:
# 1. Workflow artifacts (test-reports)
# 2. Job summary (automatically generated by CodeCoverageSummary)
# 3. GitHub checks tab
2 changes: 1 addition & 1 deletion lib/idp_common_pkg/idp_common/extraction/agentic_idp.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ async def structured_output_async(
"existing_data": existing_data.model_dump() if existing_data else None,
},
conversation_manager=SummarizingConversationManager(
summary_ratio=0.8,
summary_ratio=0.8, preserve_recent_messages=3
),
)

Expand Down