TestRAGonPDFs / app.py
UldisKK's picture
fix listdit
b7b4a3d
raw
history blame
No virus
239 Bytes
import streamlit as st
import os
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
current_working_directory = os.getcwd()
print(current_working_directory)
st.write('current dir:', current_working_directory)
os.listdir()