rupeshs commited on
Commit
62b032f
1 Parent(s): ef20d79

Updated appsettings models

Browse files
Files changed (1) hide show
  1. app_settings.py +3 -12
app_settings.py CHANGED
@@ -15,18 +15,9 @@ from copy import deepcopy
15
  class AppSettings:
16
  def __init__(self):
17
  self.config_path = FastStableDiffusionPaths().get_app_settings_path()
18
- self._stable_diffsuion_models = get_models_from_text_file(
19
- FastStableDiffusionPaths().get_models_config_path(SD_MODELS_FILE)
20
- )
21
- self._lcm_lora_models = get_models_from_text_file(
22
- FastStableDiffusionPaths().get_models_config_path(LCM_LORA_MODELS_FILE)
23
- )
24
- self._openvino_lcm_models = get_models_from_text_file(
25
- FastStableDiffusionPaths().get_models_config_path(OPENVINO_LCM_MODELS_FILE)
26
- )
27
- self._lcm_models = get_models_from_text_file(
28
- FastStableDiffusionPaths().get_models_config_path(LCM_MODELS_FILE)
29
- )
30
 
31
  @property
32
  def settings(self):
 
15
  class AppSettings:
16
  def __init__(self):
17
  self.config_path = FastStableDiffusionPaths().get_app_settings_path()
18
+ self._stable_diffsuion_models = ["Lykon/dreamshaper-8"]
19
+ self._lcm_lora_models = ["latent-consistency/lcm-lora-sdv1-5"]
20
+ self._openvino_lcm_models = ["rupeshs/sd-turbo-openvino"]
 
 
 
 
 
 
 
 
 
21
 
22
  @property
23
  def settings(self):