Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
|
|
|
|
|
|
4 |
|
5 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
with gr.Blocks() as demo:
|
4 |
+
with gr.Sidebar():
|
5 |
+
pass
|
6 |
+
gr.ChatInterface(lambda x,y,z:x, additional_inputs=["textbox"])
|
7 |
|
8 |
demo.launch()
|