quivr/backend/repository/files/list_files.py

17 lines
380 B
Python
Raw Normal View History

from multiprocessing import get_logger
from models import get_supabase_client
from supabase.client import Client
logger = get_logger()
def list_files_from_storage(path):
supabase_client: Client = get_supabase_client()
try:
response = supabase_client.storage.from_("quivr").list(path)
return response
except Exception as e:
logger.error(e)