and when I try and retrieve a list of documents using QdrantReader like this:
logger.debug("Loading data from Qdrant")
documents = reader.load_data(
collection_name=collection_name,
query_vector=query_vector,
should_search_mapping=metadata_filter,
must_search_mapping=metadata_filter,
)
reader = reader.load_data(
collection_name="doc_chat",
query_vector=[0.0, 0.0, 0.0],
should_search_mapping={"user_id": user_id},
must_search_mapping={"user_id": user_id},
)
logger.info(f"Retrieved documents: {documents}")
index = SummaryIndex.from_documents(documents)
# set Logging to DEBUG for more detailed outputs
query_engine = index.as_query_engine()
response = query_engine.query("")
logger.info(f"Query response: {response}")
return documents
And I get this error:1 validation error for Document: extra_info none is not an allowed value (type=type_error.none.not_allowed)