financial-rag-bot / delete_docs.py
Saadiktk's picture
Initial Hugging Face Space deployment
1ae6115
Raw
History Blame Contribute Delete
242 Bytes
from app.config import get_connection
conn = get_connection()
cursor = conn.cursor()
cursor.execute("DELETE FROM documents WHERE id IN (96, 98);")
conn.commit()
print(f"Deleted {cursor.rowcount} document(s).")
cursor.close()
conn.close()