diff --git a/buster/documents_manager/service.py b/buster/documents_manager/service.py index 920c7bc..0389972 100644 --- a/buster/documents_manager/service.py +++ b/buster/documents_manager/service.py @@ -87,7 +87,7 @@ def drop_db(self): For Pinecone, this means deleting everything in the namespace. For Mongo DB, this means dropping the database. However this needs to be done manually through the GUI. """ - confirmation = input("Dropping the database is irreversible. Are you sure you want to proceed? (Y/n): ") + confirmation = input("Dropping the database is irreversible. Are you sure you want to proceed? (y/N): ") if confirmation.strip().lower() == "y": self.index.delete(namespace=self.namespace, delete_all=True)