Spaces:
Running
Running
switch sdk from gradio to docker
Browse files
README.md
CHANGED
|
@@ -3,7 +3,7 @@ title: EastSync AI
|
|
| 3 |
emoji: π
|
| 4 |
colorFrom: pink
|
| 5 |
colorTo: blue
|
| 6 |
-
sdk:
|
| 7 |
app_file: app.py
|
| 8 |
pinned: false
|
| 9 |
licence: mit
|
|
|
|
| 3 |
emoji: π
|
| 4 |
colorFrom: pink
|
| 5 |
colorTo: blue
|
| 6 |
+
sdk: docker
|
| 7 |
app_file: app.py
|
| 8 |
pinned: false
|
| 9 |
licence: mit
|
app.py
CHANGED
|
@@ -117,7 +117,7 @@ def start_audio_stream():
|
|
| 117 |
|
| 118 |
def main():
|
| 119 |
demo = ui.build_interface(analyze_and_plan_interface, cancel_run, start_audio_stream)
|
| 120 |
-
demo.launch(share=True)
|
| 121 |
|
| 122 |
|
| 123 |
if __name__ == "__main__":
|
|
|
|
| 117 |
|
| 118 |
def main():
|
| 119 |
demo = ui.build_interface(analyze_and_plan_interface, cancel_run, start_audio_stream)
|
| 120 |
+
demo.launch(server_name="0.0.0.0", server_port=7860, share=True)
|
| 121 |
|
| 122 |
|
| 123 |
if __name__ == "__main__":
|