Spaces:
Running
Running
Sync from GitHub via hub-sync
Browse files
app.py
CHANGED
|
@@ -48,7 +48,6 @@ EXAMPLES: list[list[str]] = [
|
|
| 48 |
|
| 49 |
TAB_LABELS: tuple[str, ...] = (
|
| 50 |
"AST (JSON)",
|
| 51 |
-
"Canonical BCQL",
|
| 52 |
"Active spec",
|
| 53 |
)
|
| 54 |
|
|
@@ -479,7 +478,7 @@ with gr.Blocks(
|
|
| 479 |
with gr.Tabs():
|
| 480 |
with gr.Tab(TAB_LABELS[0], render_children=True):
|
| 481 |
ast_output = gr.JSON(value=EMPTY_AST, label="")
|
| 482 |
-
with gr.Tab(TAB_LABELS[
|
| 483 |
spec_md = gr.Markdown(
|
| 484 |
value=render_spec_description("None (permissive)"),
|
| 485 |
)
|
|
|
|
| 48 |
|
| 49 |
TAB_LABELS: tuple[str, ...] = (
|
| 50 |
"AST (JSON)",
|
|
|
|
| 51 |
"Active spec",
|
| 52 |
)
|
| 53 |
|
|
|
|
| 478 |
with gr.Tabs():
|
| 479 |
with gr.Tab(TAB_LABELS[0], render_children=True):
|
| 480 |
ast_output = gr.JSON(value=EMPTY_AST, label="")
|
| 481 |
+
with gr.Tab(TAB_LABELS[1], render_children=True):
|
| 482 |
spec_md = gr.Markdown(
|
| 483 |
value=render_spec_description("None (permissive)"),
|
| 484 |
)
|