None
-- but it should be str, int, float, or bool for chroma to workfor doc in documents: for key, val in doc.metadata: if val is None: doc.metadata[key] = "None"
file_type
would be none. In any case, it should probably be avoiding inserting None
valuesfile_type
key is set in base.py:mimetypes.py
works, it seems like it might fetch a list of filetypes from a couple of different locations. But there is also a hardcode list with file suffixes where .md
is missing. Adding md
to that list solved the problem.