Kangarroar's picture
Update app.py
b951c81
raw
history blame
563 Bytes
import streamlit as st
import os
import streamlit as st
# First row
col1, col2 = st.beta_columns(2)
col1.title('DIFF-SVC Render')
# Second row
col1, col2 = st.beta_columns(2)
ckpt = col1.file_uploader("Choose your CKPT", type= 'ckpt')
config = col1.file_uploader("Choose your config", type= 'yaml')
audio = col1.file_uploader("Choose your audio", type=["wav"])
# Third row
col1, col2 = st.beta_columns(2)
title = col2.text_input("Key", value="0")
title2 = col2.text_input("Speedup", value="20")
password = col2.text_input("Enter password")
# Rest of the code