Spaces:
Running
on
Zero
Running
on
Zero
Elea Zhong
commited on
Commit
·
a205585
1
Parent(s):
6d99887
update app install wandml
Browse files
app.py
CHANGED
|
@@ -11,6 +11,10 @@ from PIL import Image
|
|
| 11 |
import gradio as gr
|
| 12 |
import spaces
|
| 13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
from qwenimage.datamodels import QwenConfig
|
| 15 |
from qwenimage.debug import ctimed, ftimed
|
| 16 |
from qwenimage.experiments.experiments_qwen import ExperimentRegistry
|
|
|
|
| 11 |
import gradio as gr
|
| 12 |
import spaces
|
| 13 |
|
| 14 |
+
import subprocess
|
| 15 |
+
GIT_TOKEN = os.environ.get("GIT_TOKEN")
|
| 16 |
+
subprocess.run(f"pip install git+https://eleazhong:{GIT_TOKEN}@github.com/wand-ai/wand-ml", shell=True)
|
| 17 |
+
|
| 18 |
from qwenimage.datamodels import QwenConfig
|
| 19 |
from qwenimage.debug import ctimed, ftimed
|
| 20 |
from qwenimage.experiments.experiments_qwen import ExperimentRegistry
|