Skip to content

Commit 8e1457b

Browse files
committed
Stuck loop - fix 2
1 parent 6efcf2a commit 8e1457b

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/developer-tests.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,8 @@ jobs:
113113
output: both
114114
thresholds: '60 80'
115115

116-
- name: Add Coverage PR Comment
117-
uses: marocchino/sticky-pull-request-comment@v2
118-
if: github.event_name == 'pull_request' && hashFiles('code-coverage-results.md') != ''
119-
with:
120-
recreate: true
121-
path: code-coverage-results.md
116+
# Note: PR comments disabled for fork PRs due to permission restrictions
117+
# Coverage results are available in:
118+
# 1. Workflow artifacts (test-reports)
119+
# 2. Job summary (automatically generated by CodeCoverageSummary)
120+
# 3. GitHub checks tab

lib/idp_common_pkg/idp_common/extraction/agentic_idp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ async def structured_output_async(
566566
"existing_data": existing_data.model_dump() if existing_data else None,
567567
},
568568
conversation_manager=SummarizingConversationManager(
569-
summary_ratio=0.8,
569+
summary_ratio=0.8, preserve_recent_messages=3
570570
),
571571
)
572572

0 commit comments

Comments
 (0)