mirror of
https://github.com/open-webui/open-webui
synced 2025-01-18 00:30:51 +00:00
fix: do not use hardware ID in document ID generation
This commit is contained in:
parent
ab43bd17f6
commit
61bb1f1dc8
@ -622,7 +622,7 @@ def store_docs_in_vector_db(docs, collection_name, overwrite: bool = False) -> b
|
|||||||
|
|
||||||
for batch in create_batches(
|
for batch in create_batches(
|
||||||
api=CHROMA_CLIENT,
|
api=CHROMA_CLIENT,
|
||||||
ids=[str(uuid.uuid1()) for _ in texts],
|
ids=[str(uuid.uuid4()) for _ in texts],
|
||||||
metadatas=metadatas,
|
metadatas=metadatas,
|
||||||
embeddings=embeddings,
|
embeddings=embeddings,
|
||||||
documents=texts,
|
documents=texts,
|
||||||
|
Loading…
Reference in New Issue
Block a user