Update app.py
Browse files
app.py
CHANGED
@@ -46,6 +46,11 @@ textbox = gr.Textbox(label='Command')
|
|
46 |
|
47 |
# Create Gradio interface
|
48 |
# Create Gradio interface with tabs
|
|
|
|
|
|
|
|
|
|
|
49 |
with gr.Blocks() as demo:
|
50 |
with gr.Tab("Tab A"):
|
51 |
gr.Markdown("## This is Tab A")
|
@@ -76,9 +81,6 @@ with gr.Blocks() as demo:
|
|
76 |
# description="Data Workbench CLI",
|
77 |
# theme=gr.themes.Soft())
|
78 |
|
79 |
-
demo = gr.Interface(title="operand",
|
80 |
-
description="Data Workbench CLI",
|
81 |
-
theme=gr.themes.Soft())
|
82 |
|
83 |
demo.queue()
|
84 |
demo.launch()
|
|
|
46 |
|
47 |
# Create Gradio interface
|
48 |
# Create Gradio interface with tabs
|
49 |
+
|
50 |
+
demo = gr.Interface(title="operand",
|
51 |
+
description="Data Workbench CLI",
|
52 |
+
theme=gr.themes.Soft())
|
53 |
+
|
54 |
with gr.Blocks() as demo:
|
55 |
with gr.Tab("Tab A"):
|
56 |
gr.Markdown("## This is Tab A")
|
|
|
81 |
# description="Data Workbench CLI",
|
82 |
# theme=gr.themes.Soft())
|
83 |
|
|
|
|
|
|
|
84 |
|
85 |
demo.queue()
|
86 |
demo.launch()
|