pranavajay commited on
Commit
8d4e9ac
1 Parent(s): 506a200

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -22,8 +22,8 @@ hf_hub_download(repo_id="comfyanonymous/flux_text_encoders", filename="clip_l.sa
22
  clip_path = './clip_l.safetensors'
23
  hf_hub_download(repo_id="comfyanonymous/flux_text_encoders", filename="t5xxl_fp16.safetensors", local_dir=".")
24
  t5xxl_path = './t5xxl_fp16.safetensors'
25
- hf_hub_download(repo_id="leejet/FLUX.1-schnell-gguf", filename="flux1-schnell-q2_k.gguf", local_dir=".")
26
- model_path = './flux1-schnell-q2_k.gguf'
27
 
28
  from stable_diffusion_cpp import StableDiffusion
29
  flux_diffusion = StableDiffusion(diffusion_model_path=model_path,clip_l_path=clip_path,t5xxl_path=t5xxl_path,vae_path=vae_path,)
 
22
  clip_path = './clip_l.safetensors'
23
  hf_hub_download(repo_id="comfyanonymous/flux_text_encoders", filename="t5xxl_fp16.safetensors", local_dir=".")
24
  t5xxl_path = './t5xxl_fp16.safetensors'
25
+ hf_hub_download(repo_id="enhanceaiteam/MidFlow", filename="midflow_fp16_low.safetensors", local_dir=".")
26
+ model_path = './midflow_fp16_low.safetensors'
27
 
28
  from stable_diffusion_cpp import StableDiffusion
29
  flux_diffusion = StableDiffusion(diffusion_model_path=model_path,clip_l_path=clip_path,t5xxl_path=t5xxl_path,vae_path=vae_path,)