ysharma HF staff commited on
Commit
9e4cca3
·
verified ·
1 Parent(s): 7aa9ab3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -17,6 +17,12 @@ DESCRIPTION = '''
17
  </div>
18
  '''
19
 
 
 
 
 
 
 
20
  PLACEHOLDER = """
21
  <div style="padding: 30px; text-align: center; display: flex; flex-direction: column; align-items: center;">
22
  <img src="https://ysharma-dummy-chat-app.hf.space/file=/tmp/gradio/8e75e61cc9bab22b7ce3dec85ab0e6db1da5d107/Meta_lockup_positive%20primary_RGB.jpg" style="width: 80%; max-width: 550px; height: auto; opacity: 0.55; ">
@@ -145,6 +151,7 @@ with gr.Blocks(fill_height=True, css=css) as demo:
145
  cache_examples=False,
146
  )
147
 
 
148
 
149
  if __name__ == "__main__":
150
  demo.launch()
 
17
  </div>
18
  '''
19
 
20
+ LICENSE = """
21
+ <p/>
22
+ ---
23
+ Built with Llama
24
+ """
25
+
26
  PLACEHOLDER = """
27
  <div style="padding: 30px; text-align: center; display: flex; flex-direction: column; align-items: center;">
28
  <img src="https://ysharma-dummy-chat-app.hf.space/file=/tmp/gradio/8e75e61cc9bab22b7ce3dec85ab0e6db1da5d107/Meta_lockup_positive%20primary_RGB.jpg" style="width: 80%; max-width: 550px; height: auto; opacity: 0.55; ">
 
151
  cache_examples=False,
152
  )
153
 
154
+ gr.Markdown(LICENSE)
155
 
156
  if __name__ == "__main__":
157
  demo.launch()