prithivMLmods commited on
Commit
8a49f41
·
verified ·
1 Parent(s): 45e36be

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -22
app.py CHANGED
@@ -14,15 +14,30 @@ from diffusers import StableDiffusionXLPipeline, EulerAncestralDiscreteScheduler
14
  #html_content = f'<iframe src="{html_file_url}" style="width:100%; height:180px; border:none;"></iframe>'
15
 
16
 
17
- # Load the HTML content
18
- #html_file_url = "https://prithivmlmods-hamster-static.static.hf.space/index.html"
19
- #html_content = f'<iframe src="{html_file_url}" style="width:100%; height:180px; border:none; float:right;"></iframe>'
20
 
21
- html_content = """<img align="right" height="150" src="https://huggingface.co/spaces/prithivMLmods/Top-Prompt-Collection/resolve/main/cc.gif" />"""
22
 
23
  DESCRIPTIONx = """## STABLE HAMSTER
24
  """
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
  #Use environment variables for flexibility
28
  MODEL_ID = os.getenv("MODEL_REPO")
@@ -107,27 +122,9 @@ def generate(
107
  image_paths = [save_image(img) for img in images]
108
  return image_paths, seed
109
 
110
- examples = [
111
- "a cat eating a piece of cheese",
112
- "a ROBOT riding a BLUE horse on Mars, photorealistic, 4k",
113
- "Ironman VS Hulk, ultrarealistic",
114
- "Astronaut in a jungle, cold color palette, oil pastel, detailed, 8k",
115
- "An alien holding a sign board containing the word 'Flash', futuristic, neonpunk",
116
- "Kids going to school, Anime style"
117
- ]
118
-
119
- css = '''
120
- .gradio-container{max-width: 560px !important}
121
- h1{text-align:center}
122
- footer {
123
- visibility: hidden
124
- }
125
- '''
126
 
127
  with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
128
- gr.HTML(html_content)
129
  gr.Markdown(DESCRIPTIONx)
130
-
131
  with gr.Group():
132
  with gr.Row():
133
  prompt = gr.Text(
@@ -232,5 +229,7 @@ with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
232
  api_name="run",
233
  )
234
 
 
 
235
  if __name__ == "__main__":
236
  demo.queue(max_size=50).launch()
 
14
  #html_content = f'<iframe src="{html_file_url}" style="width:100%; height:180px; border:none;"></iframe>'
15
 
16
 
17
+ html_file_url = "https://prithivmlmods-hamster-static.static.hf.space/index.html"
18
+ html_content = f'<iframe src="{html_file_url}" style="width:100%; height:200px; border:none"></iframe>'
 
19
 
 
20
 
21
  DESCRIPTIONx = """## STABLE HAMSTER
22
  """
23
 
24
+ css = '''
25
+ .gradio-container{max-width: 560px !important}
26
+ h1{text-align:center}
27
+ footer {
28
+ visibility: hidden
29
+ }
30
+ '''
31
+
32
+ examples = [
33
+ "a cat eating a piece of cheese",
34
+ "a ROBOT riding a BLUE horse on Mars, photorealistic, 4k",
35
+ "Ironman VS Hulk, ultrarealistic",
36
+ "Astronaut in a jungle, cold color palette, oil pastel, detailed, 8k",
37
+ "An alien holding a sign board containing the word 'Flash', futuristic, neonpunk",
38
+ "Kids going to school, Anime style"
39
+ ]
40
+
41
 
42
  #Use environment variables for flexibility
43
  MODEL_ID = os.getenv("MODEL_REPO")
 
122
  image_paths = [save_image(img) for img in images]
123
  return image_paths, seed
124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
 
126
  with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
 
127
  gr.Markdown(DESCRIPTIONx)
 
128
  with gr.Group():
129
  with gr.Row():
130
  prompt = gr.Text(
 
229
  api_name="run",
230
  )
231
 
232
+
233
+ gr.HTML(html_content)
234
  if __name__ == "__main__":
235
  demo.queue(max_size=50).launch()