We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a1beb5 commit 16a947fCopy full SHA for 16a947f
ai_ta_backend/service/retrieval_service.py
@@ -141,7 +141,7 @@ async def getTopContexts(self,
141
disabled_doc_groups_response, public_doc_groups_response, user_query_embedding = await asyncio.gather(*tasks)
142
143
disabled_doc_groups = [doc_group['name'] for doc_group in disabled_doc_groups_response["data"]]
144
- public_doc_groups = [doc_group['name'] for doc_group in public_doc_groups_response["data"]]
+ public_doc_groups = public_doc_groups_response["data"]
145
146
time_for_parallel_operations = time.monotonic() - start_time_overall
147
start_time_vector_search = time.monotonic()
0 commit comments