akhaliq HF staff commited on
Commit
b9f9a46
1 Parent(s): a9a8317

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -4,6 +4,7 @@ import openai_gradio
4
  import anthropic_gradio
5
  import sambanova_gradio
6
  import xai_gradio
 
7
 
8
 
9
  with gr.Blocks() as demo:
@@ -37,6 +38,12 @@ with gr.Blocks() as demo:
37
  src=xai_gradio.registry,
38
  accept_token=True
39
  )
 
 
 
 
 
 
40
 
41
 
42
  demo.launch()
 
4
  import anthropic_gradio
5
  import sambanova_gradio
6
  import xai_gradio
7
+ import hyperbolic_gradio
8
 
9
 
10
  with gr.Blocks() as demo:
 
38
  src=xai_gradio.registry,
39
  accept_token=True
40
  )
41
+ with gr.Tab("Qwen2.5 72B"):
42
+ gr.load(
43
+ name='Qwen/Qwen2.5-72B-Instruct',
44
+ src=hyperbolic_gradio.registry,
45
+ accept_token=True
46
+ )
47
 
48
 
49
  demo.launch()