devilent2 commited on
Commit
8cee6f9
·
verified ·
1 Parent(s): bec7a05

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -1,3 +1,10 @@
1
  import gradio as gr
2
 
3
- gr.load("models/meta-llama/Meta-Llama-3.1-405B").launch()
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
 
3
+ import spaces
4
+
5
+ @spaces.GPU
6
+ def start():
7
+ gr.load("models/meta-llama/Meta-Llama-3.1-405B").launch()
8
+
9
+ start();
10
+