govbridge-api / scripts /clear_cache.py
harshrawat18's picture
feat: Enterprise-Grade Ingestion & Advanced Routing (Sprints 13-15)
6399ce4
Raw
History Blame Contribute Delete
511 Bytes
import os
from supabase import create_client
import sys
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from config import settings
SUPABASE_URL = settings.SUPABASE_URL
SUPABASE_KEY = settings.SUPABASE_KEY
def main():
supabase = create_client(SUPABASE_URL, SUPABASE_KEY)
supabase.table('query_cache').delete().neq('id', '00000000-0000-0000-0000-000000000000').execute()
print("🎉 Pollution cleared. Query cache is now empty.")
if __name__ == "__main__":
main()