diff --git a/demo/talk_to_claude/app.py b/demo/talk_to_claude/app.py index 703efe9..ddc95bf 100644 --- a/demo/talk_to_claude/app.py +++ b/demo/talk_to_claude/app.py @@ -125,7 +125,7 @@ async def output_stream(): import os if (mode := os.getenv("MODE")) == "UI": - stream.ui.launch(server_port=7860, server_name="0.0.0.0") + stream.ui.launch(server_port=7860) elif mode == "PHONE": stream.fastphone(host="0.0.0.0", port=7860) else: diff --git a/pyproject.toml b/pyproject.toml index c69434f..070322e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "hatchling.build" [project] name = "fastrtc" -version = "0.0.12" +version = "0.0.13" description = "The realtime communication library for Python" readme = "README.md" license = "apache-2.0"