You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
302 B
10 lines
302 B
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")
|
|
|