Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -290,7 +290,7 @@ def build_app() -> gr.Blocks:
|
|
| 290 |
elem_id="after_box",
|
| 291 |
)
|
| 292 |
|
| 293 |
-
gr.Examples(examples=[[e] for e in EXAMPLES], inputs=input_text, label="Try an example")
|
| 294 |
|
| 295 |
gr.HTML(
|
| 296 |
'<div class="disclaimer">Drafts for review only — not medical '
|
|
@@ -303,4 +303,4 @@ def build_app() -> gr.Blocks:
|
|
| 303 |
return app
|
| 304 |
|
| 305 |
demo = build_app()
|
| 306 |
-
demo.launch()
|
|
|
|
| 290 |
elem_id="after_box",
|
| 291 |
)
|
| 292 |
|
| 293 |
+
#gr.Examples(examples=[[e] for e in EXAMPLES], inputs=input_text, label="Try an example")
|
| 294 |
|
| 295 |
gr.HTML(
|
| 296 |
'<div class="disclaimer">Drafts for review only — not medical '
|
|
|
|
| 303 |
return app
|
| 304 |
|
| 305 |
demo = build_app()
|
| 306 |
+
demo.launch(server_name="0.0.0.0", server_port=7860, share=False)
|