modify UI
Browse files
app.py
CHANGED
@@ -93,17 +93,9 @@ def get_output(segments):
|
|
93 |
return output
|
94 |
|
95 |
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
],
|
104 |
-
outputs=[
|
105 |
-
gr.outputs.Textbox(label='Transcript')
|
106 |
-
]
|
107 |
-
).launch()
|
108 |
-
|
109 |
-
iface.launch()
|
|
|
93 |
return output
|
94 |
|
95 |
|
96 |
+
with gr.Blocks as demo:
|
97 |
+
with gr.Box():
|
98 |
+
gr.Textbox(label="First")
|
99 |
+
gr.Textbox(label="Last")
|
100 |
+
|
101 |
+
demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|