Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -108,8 +108,8 @@ if __name__ == "__main__":
|
|
| 108 |
|
| 109 |
gr.Markdown("## Examples")
|
| 110 |
with gr.Row(elem_classes=["example-images"]):
|
| 111 |
-
gr.Image(value="./images/cm1.svg", label="Sample 1", show_label=True, interactive=False, height=
|
| 112 |
-
gr.Image(value="./images/cm2.svg", label="Sample 2", show_label=True, interactive=False, height=
|
| 113 |
|
| 114 |
with gr.TabItem("Synoptic Chart"):
|
| 115 |
with gr.Row():
|
|
@@ -138,8 +138,8 @@ if __name__ == "__main__":
|
|
| 138 |
|
| 139 |
gr.Markdown("## Examples")
|
| 140 |
with gr.Row(elem_classes=["example-images"]):
|
| 141 |
-
gr.Image(value="./images/sc1.svg", label="Sample 1", show_label=True, interactive=False, height=
|
| 142 |
-
gr.Image(value="./images/sc2.svg", label="Sample 2", show_label=True, interactive=False, height=
|
| 143 |
|
| 144 |
with gr.TabItem("Radial Diagram"):
|
| 145 |
with gr.Row():
|
|
@@ -168,10 +168,10 @@ if __name__ == "__main__":
|
|
| 168 |
|
| 169 |
gr.Markdown("## Examples")
|
| 170 |
with gr.Row(elem_classes=["example-images"]):
|
| 171 |
-
gr.Image(value="./images/rd1.svg", label="Sample 1", show_label=True, interactive=False, height=
|
| 172 |
-
gr.Image(value="./images/rd2.svg", label="Sample 2", show_label=True, interactive=False, height=
|
| 173 |
-
gr.Image(value="./images/rd3.svg", label="Sample 3", show_label=True, interactive=False, height=
|
| 174 |
-
gr.Image(value="./images/rd4.svg", label="Sample 4", show_label=True, interactive=False, height=
|
| 175 |
|
| 176 |
with gr.TabItem("Process Flow"):
|
| 177 |
with gr.Row():
|
|
@@ -230,8 +230,8 @@ if __name__ == "__main__":
|
|
| 230 |
|
| 231 |
gr.Markdown("## Examples")
|
| 232 |
with gr.Row(elem_classes=["example-images"]):
|
| 233 |
-
gr.Image(value="./images/wd1.svg", label="Sample 1", show_label=True, interactive=False, height=
|
| 234 |
-
gr.Image(value="./images/wd2.svg", label="Sample 2", show_label=True, interactive=False, height=
|
| 235 |
|
| 236 |
demo.launch(
|
| 237 |
mcp_server=True,
|
|
|
|
| 108 |
|
| 109 |
gr.Markdown("## Examples")
|
| 110 |
with gr.Row(elem_classes=["example-images"]):
|
| 111 |
+
gr.Image(value="./images/cm1.svg", label="Sample 1", show_label=True, interactive=False, height="auto", width="100%")
|
| 112 |
+
gr.Image(value="./images/cm2.svg", label="Sample 2", show_label=True, interactive=False, height="auto", width="100%")
|
| 113 |
|
| 114 |
with gr.TabItem("Synoptic Chart"):
|
| 115 |
with gr.Row():
|
|
|
|
| 138 |
|
| 139 |
gr.Markdown("## Examples")
|
| 140 |
with gr.Row(elem_classes=["example-images"]):
|
| 141 |
+
gr.Image(value="./images/sc1.svg", label="Sample 1", show_label=True, interactive=False, height="auto", width="100%")
|
| 142 |
+
gr.Image(value="./images/sc2.svg", label="Sample 2", show_label=True, interactive=False, height="auto", width="100%")
|
| 143 |
|
| 144 |
with gr.TabItem("Radial Diagram"):
|
| 145 |
with gr.Row():
|
|
|
|
| 168 |
|
| 169 |
gr.Markdown("## Examples")
|
| 170 |
with gr.Row(elem_classes=["example-images"]):
|
| 171 |
+
gr.Image(value="./images/rd1.svg", label="Sample 1", show_label=True, interactive=False, height="auto", width="100%")
|
| 172 |
+
gr.Image(value="./images/rd2.svg", label="Sample 2", show_label=True, interactive=False, height="auto", width="100%")
|
| 173 |
+
gr.Image(value="./images/rd3.svg", label="Sample 3", show_label=True, interactive=False, height="auto", width="100%")
|
| 174 |
+
gr.Image(value="./images/rd4.svg", label="Sample 4", show_label=True, interactive=False, height="auto", width="100%")
|
| 175 |
|
| 176 |
with gr.TabItem("Process Flow"):
|
| 177 |
with gr.Row():
|
|
|
|
| 230 |
|
| 231 |
gr.Markdown("## Examples")
|
| 232 |
with gr.Row(elem_classes=["example-images"]):
|
| 233 |
+
gr.Image(value="./images/wd1.svg", label="Sample 1", show_label=True, interactive=False, height="auto", width="100%")
|
| 234 |
+
gr.Image(value="./images/wd2.svg", label="Sample 2", show_label=True, interactive=False, height="auto", width="100%")
|
| 235 |
|
| 236 |
demo.launch(
|
| 237 |
mcp_server=True,
|