from _arango import ArangoDB from _chromadb import ChromaDB arango = ArangoDB(db_name='lasse') admin_arango = ArangoDB(db_name='base') arango.db.collection('other_documents').truncate() chroma = ChromaDB() chroma.db.delete_collection("other_documents") chroma.db.create_collection("other_documents")