rupeshs commited on
Commit
57b4dac
1 Parent(s): 47ef626

Added models

Browse files
Files changed (1) hide show
  1. app_settings.py +3 -9
app_settings.py CHANGED
@@ -9,15 +9,9 @@ from constants import OPENVINO_LCM_MODELS_FILE, LCM_LORA_MODELS_FILE, SD_MODELS_
9
  class AppSettings:
10
  def __init__(self):
11
  self.config_path = FastStableDiffusionPaths().get_app_settings_path()
12
- self._stable_diffsuion_models = get_models_from_text_file(
13
- FastStableDiffusionPaths().get_models_config_path(SD_MODELS_FILE)
14
- )
15
- self._lcm_lora_models = get_models_from_text_file(
16
- FastStableDiffusionPaths().get_models_config_path(LCM_LORA_MODELS_FILE)
17
- )
18
- self._openvino_lcm_models = get_models_from_text_file(
19
- FastStableDiffusionPaths().get_models_config_path(OPENVINO_LCM_MODELS_FILE)
20
- )
21
 
22
  @property
23
  def settings(self):
 
9
  class AppSettings:
10
  def __init__(self):
11
  self.config_path = FastStableDiffusionPaths().get_app_settings_path()
12
+ self._stable_diffsuion_models = ["Lykon/dreamshaper-8"]
13
+ self._lcm_lora_models = ["latent-consistency/lcm-lora-sdv1-5"]
14
+ self._openvino_lcm_models = ["rupeshs/LCM-dreamshaper-v7-openvino"]
 
 
 
 
 
 
15
 
16
  @property
17
  def settings(self):