Spaces:
Sleeping
Sleeping
File size: 425 Bytes
542cdeb 992349f 542cdeb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import streamlit as st
from soundlit import AudioWidget
# Custom streamlit component for audio recording and uploading
widget = AudioWidget()
audio = widget.load_audio()
add_selectbox = st.sidebar.selectbox(
'How would you like to be contacted?',
('Email', 'Home phone', 'Mobile phone')
)
# Add a slider to the sidebar:
add_slider = st.sidebar.slider(
'Select a range of values',
0.0, 100.0, (25.0, 75.0)
) |