from upstash_vector import Indexindex = Index.from_env()# Specify the identifiers of vectors to be deletedids_to_delete = ["id1", "id2", "id3"]# Delete the specified vectorsdelete_result = index.delete(ids=ids_to_delete)# Display the number of vectors deletedprint("Number of Vectors Deleted:", delete_result.deleted)