Spaces:
Runtime error
Runtime error
Commit
·
eb01c7d
1
Parent(s):
4596128
Update app.py
Browse files
app.py
CHANGED
@@ -35,7 +35,7 @@ out = grad.Textbox(lines=5, label="Generated Prompts")
|
|
35 |
|
36 |
examples = []
|
37 |
for x in range(8):
|
38 |
-
examples.append(line[random.randrange(0, len(line))].replace("\n", "").
|
39 |
|
40 |
title = "The Stable Diffusion Prompt Generator - because your text needs a little more visual spice."
|
41 |
description = 'Welcome to the MagicPrompt demo for Stable Diffusion! Ready to see some magic happen? Simply type in your text or check out the pre-made examples. Feeling lazy? No problem, just hit the Submit button and it will randomly pull from a list of thousands of ideas for you.<br>'
|
|
|
35 |
|
36 |
examples = []
|
37 |
for x in range(8):
|
38 |
+
examples.append(line[random.randrange(0, len(line))].replace("\n", "").capitalize())
|
39 |
|
40 |
title = "The Stable Diffusion Prompt Generator - because your text needs a little more visual spice."
|
41 |
description = 'Welcome to the MagicPrompt demo for Stable Diffusion! Ready to see some magic happen? Simply type in your text or check out the pre-made examples. Feeling lazy? No problem, just hit the Submit button and it will randomly pull from a list of thousands of ideas for you.<br>'
|