11 lines
182 B
Python
11 lines
182 B
Python
from rag_system.vectordb.azure_search import delete_all_documents
|
|
|
|
|
|
def main():
|
|
print("Deleting documents...")
|
|
delete_all_documents()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|