akhaliq HF staff commited on
Commit
33e7a65
1 Parent(s): 55c44f5

update hyperbolic

Browse files
Files changed (2) hide show
  1. app.py +13 -13
  2. app_hyperbolic.py +2 -1
app.py CHANGED
@@ -30,6 +30,19 @@ with gr.Blocks(fill_height=True) as demo:
30
  with gr.Tab("Groq (New Meta Llama 3.3 70B)"):
31
  demo_groq.render()
32
  gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  with gr.Tab("Hugging Face (New Meta Llama 3.3 70B)"):
34
  demo_meta.render()
35
  gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
@@ -54,19 +67,6 @@ with gr.Blocks(fill_height=True) as demo:
54
  with gr.Tab("Fal"):
55
  demo_fal.render()
56
  gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
57
- with gr.Tab("Hyperbolic"):
58
- demo_hyperbolic.render()
59
- gr.Markdown(
60
- """
61
- <div>
62
- <img src="https://storage.googleapis.com/public-arena-asset/hyperbolic_logo.png" alt="Hyperbolic Logo" style="height: 50px; margin-right: 10px;">
63
- </div>
64
-
65
- **Note:** This model is supported by Hyperbolic. Build your AI apps at [Hyperbolic](https://app.hyperbolic.xyz/).
66
-
67
- This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.
68
- """
69
- )
70
  with gr.Tab("ShowUI"):
71
  demo_showui.render()
72
  gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
 
30
  with gr.Tab("Groq (New Meta Llama 3.3 70B)"):
31
  demo_groq.render()
32
  gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
33
+ with gr.Tab("Hyperbolic (New Meta Llama 3.3 70B)"):
34
+ demo_hyperbolic.render()
35
+ gr.Markdown(
36
+ """
37
+ <div>
38
+ <img src="https://storage.googleapis.com/public-arena-asset/hyperbolic_logo.png" alt="Hyperbolic Logo" style="height: 50px; margin-right: 10px;">
39
+ </div>
40
+
41
+ **Note:** This model is supported by Hyperbolic. Build your AI apps at [Hyperbolic](https://app.hyperbolic.xyz/).
42
+
43
+ This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.
44
+ """
45
+ )
46
  with gr.Tab("Hugging Face (New Meta Llama 3.3 70B)"):
47
  demo_meta.render()
48
  gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
 
67
  with gr.Tab("Fal"):
68
  demo_fal.render()
69
  gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  with gr.Tab("ShowUI"):
71
  demo_showui.render()
72
  gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
app_hyperbolic.py CHANGED
@@ -16,8 +16,9 @@ demo = get_app(
16
  "deepseek-ai/DeepSeek-V2.5",
17
  "meta-llama/Meta-Llama-3.1-405B-Instruct",
18
  "Qwen/QwQ-32B-Preview",
 
19
  ],
20
- default_model="Qwen/QwQ-32B-Preview",
21
  src=hyperbolic_gradio.registry,
22
  accept_token=not os.getenv("HYPERBOLIC_API_KEY"),
23
  )
 
16
  "deepseek-ai/DeepSeek-V2.5",
17
  "meta-llama/Meta-Llama-3.1-405B-Instruct",
18
  "Qwen/QwQ-32B-Preview",
19
+ "meta-llama/Llama-3.3-70B-Instruct",
20
  ],
21
+ default_model="meta-llama/Llama-3.3-70B-Instruct",
22
  src=hyperbolic_gradio.registry,
23
  accept_token=not os.getenv("HYPERBOLIC_API_KEY"),
24
  )