akhaliq HF staff meng-shao commited on
Commit
57b3cde
1 Parent(s): 17829dc

add deepseek-ai/DeepSeek-V2.5 api. (#1)

Browse files

- add deepseek-ai/DeepSeek-V2.5 api. (be6d8c1cfaa5da90538596053a94bce262da8957)


Co-authored-by: meng shao <meng-shao@users.noreply.huggingface.co>

Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -229,7 +229,14 @@ with gr.Blocks(fill_height=True) as demo:
229
 
230
  For access to Online LLMs features, please fill out the [beta access form](https://perplexity.typeform.com/apiaccessform?typeform-source=docs.perplexity.ai).
231
  """)
232
-
 
 
 
 
 
 
 
233
 
234
  demo.launch(ssr_mode=False)
235
 
 
229
 
230
  For access to Online LLMs features, please fill out the [beta access form](https://perplexity.typeform.com/apiaccessform?typeform-source=docs.perplexity.ai).
231
  """)
232
+ with gr.Tab("DeepSeek-V2.5"):
233
+ gr.load(
234
+ name='deepseek-ai/DeepSeek-V2.5',
235
+ src=hyperbolic_gradio.registry,
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