refactored project to use poetry

This commit is contained in:
2025-05-20 22:19:30 -05:00
parent 3beb160c22
commit b3da128396
20 changed files with 5113 additions and 23 deletions

10
rag_system/clear_index.py Normal file
View File

@@ -0,0 +1,10 @@
from rag_system.vectordb.azure_search import delete_all_documents
def main():
print("Deleting documents...")
delete_all_documents()
if __name__ == "__main__":
main()