ivan.lee commited on
Commit ·
080389c
1
Parent(s): d434cd3
Configure server name and disable show_api in launch to fix Python 3.13 / Gradio 4.44.0 compatibility on HF
Browse files- README.md +1 -0
- app.py +1 -1
- gradio_reachy.py +1 -1
README.md
CHANGED
|
@@ -22,6 +22,7 @@ tags:
|
|
| 22 |
- sponsor:openai
|
| 23 |
- achievement:offbrand
|
| 24 |
- achievement:offgrid
|
|
|
|
| 25 |
---
|
| 26 |
|
| 27 |
## 🏕️ Camping AI: Reachy Mini Smart Camping Voice & Guard Control Platform
|
|
|
|
| 22 |
- sponsor:openai
|
| 23 |
- achievement:offbrand
|
| 24 |
- achievement:offgrid
|
| 25 |
+
- badge-tiny-titan
|
| 26 |
---
|
| 27 |
|
| 28 |
## 🏕️ Camping AI: Reachy Mini Smart Camping Voice & Guard Control Platform
|
app.py
CHANGED
|
@@ -807,4 +807,4 @@ with gr.Blocks(title="Reachy Mini Camping Smart Assistant & Control Panel", css=
|
|
| 807 |
|
| 808 |
if __name__ == "__main__":
|
| 809 |
# Launch Gradio interface
|
| 810 |
-
demo.queue().launch(
|
|
|
|
| 807 |
|
| 808 |
if __name__ == "__main__":
|
| 809 |
# Launch Gradio interface
|
| 810 |
+
demo.queue().launch(server_name="0.0.0.0", show_api=False)
|
gradio_reachy.py
CHANGED
|
@@ -808,4 +808,4 @@ with gr.Blocks(title="Reachy Mini Camping Smart Assistant & Control Panel", css=
|
|
| 808 |
|
| 809 |
if __name__ == "__main__":
|
| 810 |
# Launch Gradio interface
|
| 811 |
-
demo.queue().launch(
|
|
|
|
| 808 |
|
| 809 |
if __name__ == "__main__":
|
| 810 |
# Launch Gradio interface
|
| 811 |
+
demo.queue().launch(server_name="0.0.0.0", show_api=False)
|