-
Notifications
You must be signed in to change notification settings - Fork 1
feat: Implement get_voting_group and search_ledamoter in breaking-news generator #605
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+140
−22
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
2e627a7
feat: add get_voting_group and search_ledamoter MCP tool integrations…
Copilot 08f5dab
Merge branch 'main' into copilot/add-mcp-tool-integrations
pethers c8aa415
fix: call all 4 REQUIRED_TOOLS unconditionally with try/catch in brea…
Copilot 480f178
Merge branch 'main' into copilot/add-mcp-tool-integrations
pethers 202a27e
Merge branch 'main' into copilot/add-mcp-tool-integrations
pethers fb8366d
test: add unconditional tool coverage and rename misleading test titles
Copilot e1eeffd
Merge branch 'main' into copilot/add-mcp-tool-integrations
pethers 89c3753
docs+test: fix doc comments to reflect unconditional tool calls; asse…
Copilot 86d44b0
Merge branch 'main' into copilot/add-mcp-tool-integrations
pethers 4812ca3
refactor: rename FetchVotingGroupParams→Filters; fix ledamoter doc; t…
Copilot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The test suite lacks coverage for the unconditional tool calling pattern. All existing tests provide either voteId or topic, but none verify that all 4 required tools are still called when only a minimal eventData (e.g., just slug) is provided.
Consider adding a test case like:
This would explicitly verify the unconditional calling behavior required for cross-reference validation compliance.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added in fb8366d:
should call all 4 required tools even with minimal event datapasses a{ slug: 'test' }event (novoteId, notopic) and asserts that all four mock methods —fetchVotingRecords,fetchVotingGroup,searchSpeeches,fetchMPs— were called.