From 4cac472ff4325d87276ef36051cfcaa5d9be470b Mon Sep 17 00:00:00 2001 From: Freddy Boulton Date: Fri, 7 Mar 2025 14:21:12 -0500 Subject: [PATCH] release (#146) --- demo/talk_to_claude/app.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"