cszhzleo commited on
Commit
2243cd0
1 Parent(s): 7536556

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py CHANGED
@@ -153,9 +153,19 @@ theme = gr.themes.Monochrome(
153
  ],
154
  )
155
 
 
 
 
 
 
 
 
 
 
156
 
157
  demo = gr.ChatInterface(
158
  generate,
 
159
  chatbot=gr.Chatbot(layout="panel"),
160
  theme=theme,
161
  )
 
153
  ],
154
  )
155
 
156
+ DESCRIPTION = """
157
+ <div style="text-align: center; max-width: 650px; margin: 0 auto; display:grid; gap:25px;">
158
+ <img class="logo" src="https://huggingface.co/datasets/philschmid/assets/resolve/main/aws-neuron_hf.png" alt="Hugging Face Neuron Logo"
159
+ style="margin: auto; max-width: 14rem;">
160
+ <h1 style="font-weight: 900; margin-bottom: 7px;margin-top:5px">
161
+ Mistral-7B-Instruct-v0.2 Chat on AWS INF2 ⚡
162
+ </h1>
163
+ </div>
164
+ """
165
 
166
  demo = gr.ChatInterface(
167
  generate,
168
+ description=DESCRIPTION,
169
  chatbot=gr.Chatbot(layout="panel"),
170
  theme=theme,
171
  )