abidlabs HF Staff commited on
Commit
687e2a2
·
verified ·
1 Parent(s): c105e7e

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ with gr.Blocks(fill_height=True) as demo:
4
+ gr.ChatInterface(lambda x,y:x).launch()
5
+ demo.launch()