Yue_MBP commited on
Commit
4b6f12e
1 Parent(s): 57b3cde

add hyperbolic logo

Browse files
Files changed (1) hide show
  1. app.py +14 -2
app.py CHANGED
@@ -179,7 +179,13 @@ with gr.Blocks(fill_height=True) as demo:
179
  accept_token=True,
180
  fill_height=True
181
  )
182
- gr.Markdown("**Note:** You need to use a Hyperbolic API key from [Hyperbolic](https://app.hyperbolic.xyz/).")
 
 
 
 
 
 
183
  with gr.Tab("Perplexity"):
184
  with gr.Row():
185
  perplexity_model = gr.Dropdown(
@@ -236,7 +242,13 @@ with gr.Blocks(fill_height=True) as demo:
236
  accept_token=True,
237
  fill_height=True
238
  )
239
- gr.Markdown("**Note:** You need to use a Hyperbolic API key from [Hyperbolic](https://app.hyperbolic.xyz/).")
 
 
 
 
 
 
240
 
241
  demo.launch(ssr_mode=False)
242
 
 
179
  accept_token=True,
180
  fill_height=True
181
  )
182
+ gr.Markdown("""
183
+ <div>
184
+ <img src="https://storage.googleapis.com/public-arena-asset/hyperbolic_logo.png" alt="Hyperbolic Logo" style="height: 50px; margin-right: 10px;">
185
+ </div>
186
+
187
+ **Note:** This model is supported by Hyperbolic. You need to use a Hyperbolic API key from [Hyperbolic](https://app.hyperbolic.xyz/).
188
+ """)
189
  with gr.Tab("Perplexity"):
190
  with gr.Row():
191
  perplexity_model = gr.Dropdown(
 
242
  accept_token=True,
243
  fill_height=True
244
  )
245
+ gr.Markdown("""
246
+ <div>
247
+ <img src="https://storage.googleapis.com/public-arena-asset/hyperbolic_logo.png" alt="Hyperbolic Logo" style="height: 50px; margin-right: 10px;">
248
+ </div>
249
+
250
+ **Note:** This model is supported by Hyperbolic. You need to use a Hyperbolic API key from [Hyperbolic](https://app.hyperbolic.xyz/).
251
+ """)
252
 
253
  demo.launch(ssr_mode=False)
254