Conversation
… serverless configuration
…erverless.yml framework version
…work version in serverless configuration
Contributor
There was a problem hiding this comment.
Pull request overview
Adds an OpenSearch-backed autosuggest endpoint by introducing a dedicated query builder and wiring a new Serverless HTTP route/handler into the existing search API.
Changes:
- Add
buildAutoSuggestQueryto construct prefix/phrase-prefix autosuggest queries. - Add
osAutoSuggestHandlerLambda handler to serve autosuggest results from OpenSearch. - Register new
GET /osautosuggestroute inserverless.yml.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 5 comments.
| File | Description |
|---|---|
src/utils/esHelpers.js |
Introduces an autosuggest query builder used by the new endpoint. |
src/handlers/osAutoSuggestHandler.js |
Adds a new Lambda handler that parses query params, executes OpenSearch search, and returns suggestions. |
serverless.yml |
Wires the new autosuggest handler to an HTTP API route. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
… serverless configuration
…erverless.yml framework version
…work version in serverless configuration
AbhishekJadhav2002
approved these changes
Mar 2, 2026
Bekhzod96
approved these changes
Mar 3, 2026
Contributor
Bekhzod96
left a comment
There was a problem hiding this comment.
Could you check why a lot of files which weren't changed and already on main still here is showing as new file
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.
Changes Done
This PR implements the AutoSuggest API endpoint utilizing OpenSearch. It introduces a new handler (osAutoSuggestHandler) and configures the /osautosuggest HTTP GET route in the Serverless framework. The endpoint leverages OpenSearch to provide autosuggest capabilities for search queries, improving user experience with real-time suggestions. Configuration and deployment details are updated in serverless.yml.