hmartiros commited on
Commit
31b83c4
1 Parent(s): 3d9ae62

App that calls page

Browse files
Files changed (2) hide show
  1. app.py +0 -1
  2. app.py +8 -0
app.py DELETED
@@ -1 +0,0 @@
1
- riffusion/riffusion/streamlit/pages/text_to_audio.py
 
 
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ from pathlib import Path
2
+ import sys
3
+
4
+ sys.path.append(str(Path(__file__).parent / "riffusion"))
5
+
6
+ from riffusion.streamlit.pages.text_to_audio import render_text_to_audio
7
+
8
+ render_text_to_audio()