Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -153,4 +153,9 @@ with gr.Blocks(title="Phi-2 Training") as demo:
|
|
153 |
)
|
154 |
|
155 |
if __name__ == "__main__":
|
156 |
-
demo.launch(
|
|
|
|
|
|
|
|
|
|
|
|
153 |
)
|
154 |
|
155 |
if __name__ == "__main__":
|
156 |
+
demo.launch(
|
157 |
+
server_name="0.0.0.0",
|
158 |
+
server_port=7860,
|
159 |
+
enable_queue=True, # Add queueing
|
160 |
+
share=False # Disable public sharing
|
161 |
+
)
|