Kangarroar's picture
Update app.py
0d70f50
raw
history blame
No virus
368 Bytes
import streamlit as st
import tempfile
st.title('DIFF-SVC Render')
###CKPT LOADER
# File uploader
ckpt = st.file_uploader("Choose your CKPT", type= 'ckpt')
# File uploader
config = st.file_uploader("Choose your config", type= 'yaml')
# File uploader
audio = st.file_uploader("Choose your audio", type=["wav", "mp3"])
if st.button("Render audio"):
print("done")