diff --git a/src/backend/base/langflow/__main__.py b/src/backend/base/langflow/__main__.py index b1898f1ef..730d31ea7 100644 --- a/src/backend/base/langflow/__main__.py +++ b/src/backend/base/langflow/__main__.py @@ -381,10 +381,11 @@ def print_banner(host: str, port: int): styled_package_name = stylize_text(package_name, package_name, any("pre-release" in notice for notice in notices)) title = f"[bold]Welcome to :chains: {styled_package_name}[/bold]\n" - info_text = "Collaborate, and contribute at our [bold][link=https://github.com/langflow-ai/langflow]GitHub Repo[/link][/bold] :rocket:" + info_text = "Collaborate, and contribute at our [bold][link=https://github.com/langflow-ai/langflow]GitHub Repo[/link][/bold] :star2:" + telemetry_text = "We collect anonymous usage data to improve Langflow.\nYou can opt-out by setting [bold]DO_NOT_TRACK=true[/bold] in your environment." access_link = f"Access [link=http://{host}:{port}]http://{host}:{port}[/link]" - panel_content = "\n\n".join([title, *styled_notices, info_text, access_link]) + panel_content = "\n\n".join([title, *styled_notices, info_text, telemetry_text, access_link]) panel = Panel(panel_content, box=box.ROUNDED, border_style="blue", expand=False) rprint(panel)