FIx unit tests with new search model configurations

This commit is contained in:
sabaimran 2023-12-20 21:50:44 +05:30
parent aa23da60a3
commit 089e4bee12
2 changed files with 7 additions and 4 deletions

View file

@ -257,6 +257,9 @@ def get_user_search_model_or_default(user=None):
if SearchModelConfig.objects.filter(name="default").exists():
return SearchModelConfig.objects.filter(name="default").first()
else:
SearchModelConfig.objects.create()
return SearchModelConfig.objects.first()

View file

@ -493,10 +493,10 @@ async def search(
# Collate results
results += text_search.collate_results(hits, dedupe=dedupe)
# Sort results across all content types and take top results
results = text_search.rerank_and_sort_results(
results, query=defiltered_query, rank_results=r, search_model_name=search_model.name
)[:results_count]
# Sort results across all content types and take top results
results = text_search.rerank_and_sort_results(
results, query=defiltered_query, rank_results=r, search_model_name=search_model.name
)[:results_count]
# Cache results
if user: