SuCicada commited on
Commit
f97d08b
1 Parent(s): b1588e7
Files changed (4) hide show
  1. .gitignore +1 -0
  2. .gitmodules +4 -0
  3. app.py +4 -2
  4. packages.txt +1 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ .idea
.gitmodules ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ [submodule "SuTTS"]
2
+ path = SuTTS
3
+ url = https://github.com/SuCicada/SuTTS.git
4
+ branch = master
app.py CHANGED
@@ -1,3 +1,5 @@
1
- import gradio as gr
2
- gr.Interface.load("models/SuCicada/SuTTS").launch()
3
 
 
 
 
 
1
+ import subprocess
 
2
 
3
+ # Run a shell command and capture its output
4
+ output = subprocess.check_output("ls -l", shell=True)
5
+ print(output.decode())
packages.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ make