lingyit1108's picture
added lfs debugging code
27a4df8
raw
history blame
178 Bytes
import streamlit as st
import os
try:
file_ls_str = ", ".join(os.listdir("raw_documents"))
except:
file_ls_str = "NA"
st.write(f"Hello World! File list: {file_ls_str}")