Naresh1993 commited on
Commit
56714a5
1 Parent(s): 7f3aff8

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/stabilityai/stablelm-zephyr-3b").launch()
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
 
3
+ gr.load("models/stabilityai/stablelm-zephyr-3b").launch()
4
+
5
+ demo = gr.Interface(
6
+ inputs=["text", "slider"],
7
+ outputs=["text"],
8
+ )
9
+
10
+ demo.launch()