KingNish commited on
Commit
52f5bd3
1 Parent(s): 5e7f462

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -10,6 +10,11 @@ from huggingface_hub import hf_hub_download
10
  from safetensors.torch import load_file
11
  from PIL import Image
12
 
 
 
 
 
 
13
  # Constants
14
  bases = {
15
  "Cartoon": "frankjoshua/toonyou_beta6",
@@ -165,4 +170,6 @@ with gr.Blocks(css="style.css") as demo:
165
  cache_examples=False,
166
  )
167
 
 
 
168
  demo.queue().launch()
 
10
  from safetensors.torch import load_file
11
  from PIL import Image
12
 
13
+ MORE = """ ## TRY Other Models
14
+ ### JARVIS: Your VOICE Assistant -> https://huggingface.co/spaces/KingNish/JARVIS
15
+ ### Instant Image: 4k images in 5 Second -> https://huggingface.co/spaces/KingNish/Instant-Image
16
+ """
17
+
18
  # Constants
19
  bases = {
20
  "Cartoon": "frankjoshua/toonyou_beta6",
 
170
  cache_examples=False,
171
  )
172
 
173
+ gr.Markdown(MORE)
174
+
175
  demo.queue().launch()