Spaces:
Running
on
L40S
Running
on
L40S
Commit
•
2178ae1
1
Parent(s):
4f52d5d
Update app.py
Browse files
app.py
CHANGED
@@ -13,8 +13,8 @@ hf_hub_download(repo_id="Comfy-Org/sigclip_vision_384", filename="sigclip_vision
|
|
13 |
hf_hub_download(repo_id="Kijai/DepthAnythingV2-safetensors", filename="depth_anything_v2_vitl_fp32.safetensors", cache_dir="models/depthanything")
|
14 |
hf_hub_download(repo_id="black-forest-labs/FLUX.1-dev", filename="ae.safetensors", cache_dir="models/vae/FLUX1")
|
15 |
hf_hub_download(repo_id="comfyanonymous/flux_text_encoders", filename="clip_l.safetensors", cache_dir="models/text_encoders")
|
16 |
-
hf_hub_download(repo_id="comfyanonymous/flux_text_encoders", filename="t5xxl_fp16.safetensors", cache_dir="models/text_encoders/t5")
|
17 |
-
|
18 |
# Import all the necessary functions from the original script
|
19 |
def get_value_at_index(obj: Union[Sequence, Mapping], index: int) -> Any:
|
20 |
try:
|
|
|
13 |
hf_hub_download(repo_id="Kijai/DepthAnythingV2-safetensors", filename="depth_anything_v2_vitl_fp32.safetensors", cache_dir="models/depthanything")
|
14 |
hf_hub_download(repo_id="black-forest-labs/FLUX.1-dev", filename="ae.safetensors", cache_dir="models/vae/FLUX1")
|
15 |
hf_hub_download(repo_id="comfyanonymous/flux_text_encoders", filename="clip_l.safetensors", cache_dir="models/text_encoders")
|
16 |
+
t5_path = hf_hub_download(repo_id="comfyanonymous/flux_text_encoders", filename="t5xxl_fp16.safetensors", cache_dir="models/text_encoders/t5")
|
17 |
+
print(t5_path)
|
18 |
# Import all the necessary functions from the original script
|
19 |
def get_value_at_index(obj: Union[Sequence, Mapping], index: int) -> Any:
|
20 |
try:
|