RageshAntony commited on
Commit
a69d563
·
verified ·
1 Parent(s): f3dea65

flux to first

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -29,14 +29,15 @@ os.makedirs(OUTPUT_DIR, exist_ok=True)
29
 
30
  # Model configurations
31
  MODEL_CONFIGS = {
32
- "Stable Diffusion 3.5": {
33
- "repo_id": "stabilityai/stable-diffusion-3.5-large",
34
- "pipeline_class": StableDiffusion3Pipeline
35
- },
36
  "FLUX": {
37
  "repo_id": "black-forest-labs/FLUX.1-dev",
38
  "pipeline_class": FluxPipeline
 
 
 
 
39
  }
 
40
  }
41
 
42
  # Dictionary to store model pipelines
 
29
 
30
  # Model configurations
31
  MODEL_CONFIGS = {
 
 
 
 
32
  "FLUX": {
33
  "repo_id": "black-forest-labs/FLUX.1-dev",
34
  "pipeline_class": FluxPipeline
35
+ },
36
+ "Stable Diffusion 3.5": {
37
+ "repo_id": "stabilityai/stable-diffusion-3.5-large",
38
+ "pipeline_class": StableDiffusion3Pipeline
39
  }
40
+
41
  }
42
 
43
  # Dictionary to store model pipelines