Spaces:
Runtime error
Runtime error
Nits
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ PIPELINE.load_lora_weights("artificialguybr/LogoRedmond-LogoLoraForSDXL-V2")
|
|
16 |
def predict(user_prompt: str):
|
17 |
prompt = ", ".join(KEYWORDS)
|
18 |
if user_prompt:
|
19 |
-
prompt += ", " +
|
20 |
|
21 |
return PIPELINE(prompt).images[0]
|
22 |
|
|
|
16 |
def predict(user_prompt: str):
|
17 |
prompt = ", ".join(KEYWORDS)
|
18 |
if user_prompt:
|
19 |
+
prompt += ", " + user_prompt
|
20 |
|
21 |
return PIPELINE(prompt).images[0]
|
22 |
|