mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-28 22:04:48 +03:00
18 lines
422 B
Python
18 lines
422 B
Python
|
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)
|
||
|
logger.info("RESPONSE", response)
|
||
|
return response
|
||
|
except Exception as e:
|
||
|
logger.error(e)
|