We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
when creating the text unit sources in the LocalSearchMixedContext, the sources are not deduplicated:
While there is a text_unit_ids_set in the code, it is never used: Line 335 of mixed_context.py
text_unit_ids_set
I fixed it by adding: text_unit_ids_set.add(text_id)
text_unit_ids_set.add(text_id)
in line 337.
The text was updated successfully, but these errors were encountered:
tried to create a PR for the issue: #1468 My first PR, please be kind :)
Sorry, something went wrong.
No branches or pull requests
Hello,
when creating the text unit sources in the LocalSearchMixedContext, the sources are not deduplicated:
While there is a
text_unit_ids_set
in the code, it is never used:Line 335 of mixed_context.py
I fixed it by adding:
text_unit_ids_set.add(text_id)
in line 337.
The text was updated successfully, but these errors were encountered: