Hello, I'm facing an issue while indexing txt files into my mongodb database. When i store my documents in the database the encoding change and i don't know why. I check my files and they're all enbcoded in "utf-8". Here is my code :
for docs in reader.iter_data(): print("F > " + docs[0].get_text() ) VectorStoreIndex.from_documents(docs, storage_context=storage_context)
It seems like it's the variable "VectorStoreIndex" which change the encoding, so my question is : Can i force "VectorStoreIndex" to encode in utf-8 ? If yes, How can i do taht?