langchain
langchain copied to clipboard
bug_fixes: use md5 instead of uuid id generation
At present, the method of generating point in qdrant is to use random uuid. The problem with this approach is that even documents with the same content will be inserted repeatedly instead of updated. Using md5 as the ID of point to insert text can achieve true update or insert.