Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -18,9 +18,12 @@ intents.message_content = True
|
|
18 |
# Hugging Face 모델 다운로드
|
19 |
huggingface_token = os.getenv("HF_TOKEN")
|
20 |
model_path = snapshot_download(
|
21 |
-
repo_id="SG161222/RealVisXL_V4.0",
|
|
|
|
|
22 |
repo_type="model",
|
23 |
-
local_dir="RealVisXL_V4.0",
|
|
|
24 |
token=huggingface_token,
|
25 |
)
|
26 |
|
|
|
18 |
# Hugging Face 모델 다운로드
|
19 |
huggingface_token = os.getenv("HF_TOKEN")
|
20 |
model_path = snapshot_download(
|
21 |
+
# repo_id="SG161222/RealVisXL_V4.0",
|
22 |
+
repo_id="cagliostrolab/animagine-xl-3.1",
|
23 |
+
|
24 |
repo_type="model",
|
25 |
+
# local_dir="RealVisXL_V4.0",
|
26 |
+
local_dir="animagine-xl-3.1",
|
27 |
token=huggingface_token,
|
28 |
)
|
29 |
|