yanze commited on
Commit
56c39d7
·
verified ·
1 Parent(s): c46e477

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -30,7 +30,7 @@ class FluxGenerator:
30
  def __init__(self):
31
  self.device = torch.device('cuda')
32
  self.offload = False
33
- self.model_name = 'flux-dev'
34
  self.model, self.ae, self.t5, self.clip, self.nsfw_classifier = get_models(
35
  self.model_name,
36
  device=self.device,
@@ -164,6 +164,7 @@ _HEADER_ = '''
164
  </div>
165
 
166
  🚩 Updates:
 
167
  - 2024.11.01: update PuLID-FLUX-v0.9.1, please refer to <a href='https://github.com/ToTheBeginning/PuLID?tab=readme-ov-file#triangular_flag_on_post-updates'>our github repo</a> for more details.
168
 
169
 
 
30
  def __init__(self):
31
  self.device = torch.device('cuda')
32
  self.offload = False
33
+ self.model_name = 'flux-krea-dev'
34
  self.model, self.ae, self.t5, self.clip, self.nsfw_classifier = get_models(
35
  self.model_name,
36
  device=self.device,
 
164
  </div>
165
 
166
  🚩 Updates:
167
+ - 2025.08.01: Switch the base model from FLUX.1-dev to FLUX.1-Krea-dev.
168
  - 2024.11.01: update PuLID-FLUX-v0.9.1, please refer to <a href='https://github.com/ToTheBeginning/PuLID?tab=readme-ov-file#triangular_flag_on_post-updates'>our github repo</a> for more details.
169
 
170