mashe commited on
Commit
86241b3
·
verified ·
1 Parent(s): 31a1c48

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -1,3 +1,7 @@
1
  import gradio as gr
2
 
3
- gr.load("models/bigcode/starcoder").launch()
 
 
 
 
 
1
  import gradio as gr
2
 
3
+ # Load the StarCoder model
4
+ demo = gr.load("models/bigcode/starcoder", src="models")
5
+
6
+ # Launch the Gradio interface
7
+ demo.launch()