bpandey23 commited on
Commit
09ff806
·
verified ·
1 Parent(s): c21381d

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ interface = gr.Interface(
4
+ stream,
5
+ inputs=[gr.Textbox(lines=5, label="Instruction")],
6
+ outputs="textbox",
7
+ title="Zephyr LLM Charbot",
8
+ description="Enter a task instruction and the model will generate a response."
9
+ )
10
+
11
+
12
+ interface.launch()