fix: Remove the tracestack when the collection already exists
@@ -1004,10 +1004,11 @@ def store_docs_in_vector_db(docs, collection_name, overwrite: bool = False) -> b
return True
except Exception as e:
- log.exception(e)
if e.__class__.__name__ == "UniqueConstraintError":
+ log.exception(e)
+
return False