fix(compass-aggregations): exclude database-level operators from AI prompts and autocomplete COMPASS-10677#8144
Open
ivandevp wants to merge 2 commits into
Open
fix(compass-aggregations): exclude database-level operators from AI prompts and autocomplete COMPASS-10677#8144ivandevp wants to merge 2 commits into
ivandevp wants to merge 2 commits into
Conversation
…rompts and autocomplete COMPASS-10677 Prevent the AI from suggesting $documents and other db-level stages in collection aggregations, and remove them from the text editor autocomplete by wiring the existing namespace filter through to createAggregationAutocompleter.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
When users ask the AI assistant to generate an aggregation pipeline with prompts like "Create a pipeline to generate 20 documents describing different roasted coffee beans", the AI would suggest
$documents(and other database-level stages). These fail at runtime because they require{aggregate: 1}(database-level aggregation), not collection-level:The text editor's autocomplete also surfaced these operators, compounding the confusion.
Two fixes:
buildInstructionsForAggregateQuery()prohibiting database-level stages ($documents,$changeStream,$currentOp,$listLocalSessions, etc.) and explaining the pipeline runs against a collection.stage.namespacefilter (already used by the stage wizard) through tocreateAggregationAutocompleter, so the text editor no longer suggests operators whosenamespacesis['db'].Checklist
Motivation and Context
Fixes COMPASS-10677.
Open Questions
N/A
Dependents
N/A
Types of changes