Update app.py
Browse files
app.py
CHANGED
|
@@ -76,7 +76,7 @@ def get_args_parser():
|
|
| 76 |
parser.add_argument("--server_port", type=int, default=None, help="Port for the server.")
|
| 77 |
parser.add_argument("--tmp_dir", type=str, default=None, help="Temporary directory.")
|
| 78 |
parser.add_argument("--silent", action='store_true', help="Run silently.")
|
| 79 |
-
parser.add_argument("--share", action='store_true', help="Share the application.")
|
| 80 |
parser.add_argument("--gradio_delete_cache", action='store_true', help="Delete Gradio cache.")
|
| 81 |
return parser
|
| 82 |
|
|
|
|
| 76 |
parser.add_argument("--server_port", type=int, default=None, help="Port for the server.")
|
| 77 |
parser.add_argument("--tmp_dir", type=str, default=None, help="Temporary directory.")
|
| 78 |
parser.add_argument("--silent", action='store_true', help="Run silently.")
|
| 79 |
+
parser.add_argument("--share", default=True, action='store_true', help="Share the application.")
|
| 80 |
parser.add_argument("--gradio_delete_cache", action='store_true', help="Delete Gradio cache.")
|
| 81 |
return parser
|
| 82 |
|