Spaces:
Running
on
Zero
Running
on
Zero
Alexander Bagus
commited on
Commit
·
396104e
1
Parent(s):
bca42eb
22
Browse files
app.py
CHANGED
|
@@ -111,7 +111,7 @@ with open('static/data.json', 'r') as file:
|
|
| 111 |
data = json.load(file)
|
| 112 |
examples = data['examples']
|
| 113 |
|
| 114 |
-
with gr.Blocks(
|
| 115 |
with gr.Column(elem_id="col-container"):
|
| 116 |
with gr.Column():
|
| 117 |
gr.HTML(read_file("static/header.html"))
|
|
@@ -223,4 +223,4 @@ with gr.Blocks(css=css) as demo:
|
|
| 223 |
)
|
| 224 |
|
| 225 |
if __name__ == "__main__":
|
| 226 |
-
demo.launch(mcp_server=True)
|
|
|
|
| 111 |
data = json.load(file)
|
| 112 |
examples = data['examples']
|
| 113 |
|
| 114 |
+
with gr.Blocks() as demo:
|
| 115 |
with gr.Column(elem_id="col-container"):
|
| 116 |
with gr.Column():
|
| 117 |
gr.HTML(read_file("static/header.html"))
|
|
|
|
| 223 |
)
|
| 224 |
|
| 225 |
if __name__ == "__main__":
|
| 226 |
+
demo.launch(mcp_server=True, css=css)
|