fix: #30511 [Bug] knowledge_retrieval_node fails when using Rerank Model: "Working outside of application context" and add regression test#30549
Conversation
Summary of ChangesHello @hsiong, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request resolves a significant bug in the knowledge retrieval system that previously prevented the successful operation of reranking models. The core problem was an improper execution context for the reranking logic, leading to Flask application context errors. By correctly scoping this logic, the PR restores the intended functionality and includes a dedicated regression test to ensure the stability of this feature moving forward. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request correctly fixes a Working outside of application context error that occurred during reranking in the knowledge retrieval node. The fix involves moving the reranking logic into the Flask application context, which is the right approach. Additionally, a comprehensive regression test has been added to prevent this issue from recurring. The changes look good and effectively resolve the bug.
| Thanks for the suggestion and for merging the PR :D |
Important
Fixes #<issue number>.Summary
@crazywoola
Since this change diverged from the previous implementation, I re-submitted the fix and closed the earlier PR:
#30521
fix: #30511 [Bug] knowledge_retrieval_node fails when using Rerank Model: "Working outside of application context"
In the call chain,
db.enginerequires a Flask application context, butreranking_enablelogic is currently executed outside of the application context.As a result, when the reranking logic initializes and eventually accesses
db.engine, Flask raises “Working outside of application context.”Tests
Added a regression test in
test_knowledge_retrieval.pyto cover this scenario.The new test reproduces the failure in the previous implementation and passes after the fix, preventing future regressions.
Verification
uv run --project api pytest tests/unit_tests/core/rag/retrieval/test_knowledge_retrieval.py -k reranking_with_app_context -qScreenshots
Before
After
Checklist
dev/reformat(backend) andcd web && npx lint-staged(frontend) to appease the lint gods