Uthar commited on
Commit
096d6da
·
verified ·
1 Parent(s): 3a1595b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -5,6 +5,7 @@ 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"
@@ -40,7 +41,8 @@ default_models = models[:num_models]
40
  MAX_SEED = 2**32-1
41
 
42
  def imgageHasUpdated(theImage):
43
- print(theImage.result)
 
44
 
45
  def extend_choices(choices):
46
  return choices[:num_models] + (num_models - len(choices[:num_models])) * ['NA']
 
5
  import os
6
  from threading import RLock
7
  from datetime import datetime
8
+ from pprint import pprint
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
  negPreSetPrompt = "[deformed | disfigured], poorly drawn, [bad : wrong] anatomy, [extra | missing | floating | disconnected] limb, (mutated hands and fingers), blurry, text, fuzziness"
 
41
  MAX_SEED = 2**32-1
42
 
43
  def imgageHasUpdated(theImage):
44
+ pprint(vars(theImage))
45
+ # print(theImage.result)
46
 
47
  def extend_choices(choices):
48
  return choices[:num_models] + (num_models - len(choices[:num_models])) * ['NA']