Spaces:
Runtime error
Runtime error
App that calls page
Browse files
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()
|