Kangarroar's picture
Update app.py
ba9e9c7
raw
history blame
480 Bytes
import streamlit as st
import os
import streamlit as st
# First row
col1, col2 = st.columns(2)
col1.title('DIFF-SVC Render')
col2.title('')
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"])
title = col2.text_input("Key", value="0")
title2 = col2.text_input("Speedup", value="20")
password = col2.text_input("Enter password")
# Rest of the code