Skip to content
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

Add QueryFilterAgent to enhance lexical search queries (✓ Sandbox Passed) #2675

Closed
wants to merge 3 commits into from

Conversation

sweep-nightly[bot]
Copy link
Contributor

@sweep-nightly sweep-nightly bot commented Dec 3, 2023

Description

This pull request adds a new QueryFilterAgent to enhance lexical search queries by filtering unnecessary terms from the search query.

Summary

  • Added sweepai/agents/query_filter_agent.py to create QueryFilterAgent class
  • Added sweepai/agents/query_filter_agent_test.py to test QueryFilterAgent functionality
  • Modified sweepai/utils/ticket_utils.py to use QueryFilterAgent to filter search queries

Fixes #2661.


🎉 Latest improvements to Sweep:

  • Sweep uses OpenAI's latest Assistant API to plan code changes and modify code! This is 3x faster and significantly more reliable as it allows Sweep to edit code and validate the changes in tight iterations, the same way as a human would.
  • Sweep now uses the rope library to refactor Python! Check out Large Language Models are Bad at Refactoring Code. To have Sweep refactor your code, try sweep: Refactor <your_file>.py!

💡 To get Sweep to edit this pull request, you can:

  • Comment below, and Sweep can edit the entire PR
  • Comment on a file, Sweep will only modify the commented file
  • Edit the original issue to get Sweep to recreate the PR from scratch

Copy link
Contributor Author

sweep-nightly bot commented Dec 3, 2023

Sandbox Executions

  • Running GitHub Actions for sweepai/agents/query_filter_agent.py
Check sweepai/agents/query_filter_agent.py with contents:

Ran GitHub Actions for 537ebdbd5410db1a08dd87974ad283e91e7384fb:
• black:
• Vercel Preview Comments:

  • Running GitHub Actions for sweepai/utils/ticket_utils.py
Check sweepai/utils/ticket_utils.py with contents:

Ran GitHub Actions for 5eca4f3f4279c7d5a7ca661c542882946c2a1183:
• black:
• Vercel Preview Comments:

  • Running GitHub Actions for sweepai/agents/query_filter_agent_test.py
Check sweepai/agents/query_filter_agent_test.py with contents:

Ran GitHub Actions for 95b4d76ad15a7c9e5835fb914c56d1b33e11f4c9:
• Vercel Preview Comments:
• black:

Copy link
Contributor Author

sweep-nightly bot commented Dec 3, 2023

Apply Sweep Rules to your PR?

  • Apply: We should use loguru for error logging. If the log is inside an exception, use loguru.exception to add tracebacks. Use f-strings for string formatting in logger calls.
  • Apply: There should be no debug log or print statements in production code.
  • Apply: All functions should have parameters and output annotated with type hints. Use list, tuple and dict instead of typing.List, typing.Tuple and typing.dict.
  • Apply: Leftover TODOs in the code should be handled.
  • Apply: All new business logic should have corresponding unit tests in the same directory. For example, sweepai/api_test.py tests sweepai/api.py. Use unittest and unittest.mock as required.
  • Apply: Any clearly inefficient or repeated code should be optimized or refactored.
  • Apply: Remove any comments before code that are obvious. For example # this prints hello world; print('hello world').

@sweep-nightly sweep-nightly bot added the sweep Assigns Sweep to an issue or pull request. label Dec 3, 2023
Copy link

vercel bot commented Dec 3, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
sweep-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Dec 3, 2023 9:06am

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
sweep Assigns Sweep to an issue or pull request.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Sweep: create a new agent to be used in ticket_utils.py
0 participants