Clean up use of pipecat version

This commit is contained in:
Mark Backman
2025-12-17 11:49:54 -05:00
parent b3403e884d
commit f1a0d547ce
3 changed files with 6 additions and 6 deletions

View File

@@ -12,7 +12,7 @@ import httpx
from loguru import logger
from pydantic import BaseModel
from pipecat import __version__
from pipecat import version as pipecat_version
from pipecat.frames.frames import (
CancelFrame,
EndFrame,
@@ -43,7 +43,7 @@ HUME_SAMPLE_RATE = 48_000 # Hume TTS streams at 48 kHz
# Tracking headers for Hume API requests
DEFAULT_HEADERS = {
"X-Hume-Client-Name": "pipecat",
"X-Hume-Client-Version": __version__,
"X-Hume-Client-Version": pipecat_version(),
}