clementchadebec commited on
Commit
95a0bf9
1 Parent(s): 286003b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -98,6 +98,9 @@ with gr.Blocks(css=css) as demo:
98
  Currently running on {power_device}.
99
  """
100
  )
 
 
 
101
 
102
  with gr.Row():
103
 
@@ -128,11 +131,10 @@ with gr.Blocks(css=css) as demo:
128
  examples = gr.Examples(examples=examples, inputs=[prompt])
129
 
130
  gr.Markdown(
131
- "This demo is only for research purpose. Jasper cannot be held responsible for the generation of NSFW (Not Safe For Work) content through the use of this demo. Users are solely responsible for any content they create, and it is their obligation to ensure that it adheres to appropriate and ethical standards. Jasper provides the tools, but the responsibility for their use lies with the individual user."
132
  )
133
-
134
  gr.Markdown(
135
- "To better appreciate the low latency of our method, run the demo locally !"
136
  )
137
 
138
  run_button.click(fn=infer, inputs=[prompt, seed, randomize_seed], outputs=[result])
 
98
  Currently running on {power_device}.
99
  """
100
  )
101
+ gr.Markdown(
102
+ "*Hint 💡:* To better appreciate the low latency of our method, run the demo locally !"
103
+ )
104
 
105
  with gr.Row():
106
 
 
131
  examples = gr.Examples(examples=examples, inputs=[prompt])
132
 
133
  gr.Markdown(
134
+ "*Disclaimer:*"
135
  )
 
136
  gr.Markdown(
137
+ "This demo is only for research purpose. Jasper cannot be held responsible for the generation of NSFW (Not Safe For Work) content through the use of this demo. Users are solely responsible for any content they create, and it is their obligation to ensure that it adheres to appropriate and ethical standards. Jasper provides the tools, but the responsibility for their use lies with the individual user."
138
  )
139
 
140
  run_button.click(fn=infer, inputs=[prompt, seed, randomize_seed], outputs=[result])