Update app.py
Browse files
app.py
CHANGED
@@ -1,12 +1,14 @@
|
|
1 |
import gradio as gr
|
2 |
from all_models import models
|
|
|
3 |
from externalmod import gr_Interface_load, save_image, randomize_seed
|
4 |
import asyncio
|
5 |
import os
|
6 |
from threading import RLock
|
7 |
from datetime import datetime
|
8 |
|
9 |
-
preSetPrompt = "tall slender athletic 18+ caucasian woman. gorgeous face. perfect small tits. short hair. sassy smile. shredded ripped torn shirt. unbuttoned jeans. explicit. artistic. photorealistic. f1.4"
|
|
|
10 |
negPreSetPrompt = "[deformed | disfigured], poorly drawn, [bad : wrong] anatomy, [extra | missing | floating | disconnected] limb, (mutated hands and fingers), blurry, text, fuzziness"
|
11 |
|
12 |
lock = RLock()
|
|
|
1 |
import gradio as gr
|
2 |
from all_models import models
|
3 |
+
from prompt import thePrompt
|
4 |
from externalmod import gr_Interface_load, save_image, randomize_seed
|
5 |
import asyncio
|
6 |
import os
|
7 |
from threading import RLock
|
8 |
from datetime import datetime
|
9 |
|
10 |
+
# preSetPrompt = "tall slender athletic 18+ caucasian woman. gorgeous face. perfect small tits. short hair. sassy smile. shredded ripped torn shirt. unbuttoned jeans. explicit. artistic. photorealistic. f1.4"
|
11 |
+
preSetPrompt = thePrompt
|
12 |
negPreSetPrompt = "[deformed | disfigured], poorly drawn, [bad : wrong] anatomy, [extra | missing | floating | disconnected] limb, (mutated hands and fingers), blurry, text, fuzziness"
|
13 |
|
14 |
lock = RLock()
|