Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,7 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
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()
|