akhaliq HF staff commited on
Commit
65cde5f
1 Parent(s): 2086c03

add hyperbolic logo (#2)

Browse files

- add hyperbolic logo (4b6f12e738cbed459f4fc9b0466a8143d2027446)

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