Spaces:
Running
Running
File size: 234 Bytes
5cc1949 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import streamlit as st
# Title
st.title("Gradio-like UI")
# Audio input
# st.audio_recorder("Record")
st.text_input("Record")
# Output text
st.text_area("Output")
# Buttons
st.button("Clear")
st.button("Submit")
st.button("Flag")
|