primerz commited on
Commit
fd154f8
·
verified ·
1 Parent(s): 81c50c6

Update config.py

Browse files
Files changed (1) hide show
  1. config.py +10 -1
config.py CHANGED
@@ -22,9 +22,18 @@ MODEL_FILES = {
22
  }
23
 
24
  # LORA configuration
25
- TRIGGER_WORD = "p1x3l4rt, pixel art"
26
  LORA_CHOICES = ["RetroArt", "VGA", "LucasArt", "None"]
27
 
 
 
 
 
 
 
 
 
 
 
28
  # Face detection configuration
29
  FACE_DETECTION_CONFIG = {
30
  "model_name": "antelopev2", # <-- REVERTED to antelopev2
 
22
  }
23
 
24
  # LORA configuration
 
25
  LORA_CHOICES = ["RetroArt", "VGA", "LucasArt", "None"]
26
 
27
+ # --- START FIX: Changed TRIGGER_WORD to a dictionary ---
28
+ TRIGGER_WORD = {
29
+ "RetroArt": "p1x3l4rt, pixel art",
30
+ "VGA": "dosvga style",
31
+ "LucasArt": "lucasarts style",
32
+ "None": "" # No trigger word if LORA is disabled
33
+ }
34
+ # --- END FIX ---
35
+
36
+
37
  # Face detection configuration
38
  FACE_DETECTION_CONFIG = {
39
  "model_name": "antelopev2", # <-- REVERTED to antelopev2