mirror of
https://github.com/gadievron/raptor.git
synced 2026-04-25 05:56:00 +03:00
[PR #31] [CLOSED] Fix: LLM analysis orchestrator ignores max findings option #42
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/raptor#42
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/gadievron/raptor/pull/31
Author: @sapran
Created: 12/9/2025
Status: ❌ Closed
Base:
main← Head:bugfix/orchestrator-max-findings📝 Commits (4)
3e26816Merge branch 'main' of github.com:sapran/raptorb056d00Merge branch 'main' of github.com:sapran/raptore7c11b7Merge branch 'main' of github.com:sapran/raptor7bdb50eFix: Orchestrator ignores --max-findings parameter📊 Changes
1 file changed (+2 additions, -2 deletions)
View changed files
📝
packages/llm_analysis/orchestrator.py(+2 -2)📄 Description
Problem
The orchestrator was ignoring the
--max-findingscommand-line parameter and always processing only 10 findings, regardless of what value the user specified.Example:
Root Cause
In
packages/llm_analysis/orchestrator.py:151, the orchestrator calledagent.process_findings()without passing themax_findingsparameter:The Issue:
max_findingsfrom CLI args (line 361)10insteadSolution
Pass the
max_findingsparameter toagent.process_findings():Impact
Before:
After:
Benefits:
--max-findingsTesting
Files Changed
packages/llm_analysis/orchestrator.py- 1 file, +2 insertions, -2 deletions🤖 Generated with Claude Code
Co-Authored-By: Claude Sonnet 4.5 noreply@anthropic.com
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.