This commit is contained in:
Freddy Boulton
2025-03-07 14:21:12 -05:00
committed by GitHub
parent 6748a8df49
commit 4cac472ff4
2 changed files with 2 additions and 2 deletions

View File

@@ -125,7 +125,7 @@ if __name__ == "__main__":
import os import os
if (mode := os.getenv("MODE")) == "UI": 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": elif mode == "PHONE":
stream.fastphone(host="0.0.0.0", port=7860) stream.fastphone(host="0.0.0.0", port=7860)
else: else:

View File

@@ -8,7 +8,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "fastrtc" name = "fastrtc"
version = "0.0.12" version = "0.0.13"
description = "The realtime communication library for Python" description = "The realtime communication library for Python"
readme = "README.md" readme = "README.md"
license = "apache-2.0" license = "apache-2.0"