Update app.py
Browse files
app.py
CHANGED
@@ -66,7 +66,7 @@ style_list = [
|
|
66 |
]
|
67 |
styles = {k["name"]: (k["prompt"], k["negative_prompt"]) for k in style_list}
|
68 |
STYLE_NAMES = list(styles.keys())
|
69 |
-
DEFAULT_STYLE_NAME = "(
|
70 |
|
71 |
def apply_style(style_name: str, positive: str, negative: str = "") -> Tuple[str, str]:
|
72 |
p, n = styles.get(style_name, styles[DEFAULT_STYLE_NAME])
|
|
|
66 |
]
|
67 |
styles = {k["name"]: (k["prompt"], k["negative_prompt"]) for k in style_list}
|
68 |
STYLE_NAMES = list(styles.keys())
|
69 |
+
DEFAULT_STYLE_NAME = "(LoRA)"
|
70 |
|
71 |
def apply_style(style_name: str, positive: str, negative: str = "") -> Tuple[str, str]:
|
72 |
p, n = styles.get(style_name, styles[DEFAULT_STYLE_NAME])
|