log pipecat version on application startup

This commit is contained in:
Aleix Conchillo Flaqué
2025-02-25 16:32:16 -08:00
parent aa60a413f3
commit f8f0578c3d
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#
# Copyright (c) 20242025, Daily
#
# SPDX-License-Identifier: BSD 2-Clause License
#
from importlib.metadata import version
from loguru import logger
__version__ = version("pipecat-ai")
logger.info(f"ᓚᘏᗢ Pipecat {__version__} ᓚᘏᗢ")