Merge pull request #3933 from pipecat-ai/aleix/misc-fixes

Fix Daily transport log level and eval script import
This commit is contained in:
Aleix Conchillo Flaqué
2026-03-05 18:48:14 -08:00
committed by GitHub
2 changed files with 2 additions and 3 deletions

View File

@@ -16,7 +16,6 @@ from pathlib import Path
from typing import Any, List, Optional, Tuple from typing import Any, List, Optional, Tuple
import aiofiles import aiofiles
from deepgram import LiveOptions
from loguru import logger from loguru import logger
from PIL.ImageFile import ImageFile from PIL.ImageFile import ImageFile
from utils import ( from utils import (
@@ -50,7 +49,7 @@ from pipecat.processors.audio.audio_buffer_processor import AudioBufferProcessor
from pipecat.processors.frame_processor import FrameDirection from pipecat.processors.frame_processor import FrameDirection
from pipecat.runner.types import RunnerArguments from pipecat.runner.types import RunnerArguments
from pipecat.services.cartesia.tts import CartesiaTTSService from pipecat.services.cartesia.tts import CartesiaTTSService
from pipecat.services.deepgram.stt import DeepgramSTTService from pipecat.services.deepgram.stt import DeepgramSTTService, LiveOptions
from pipecat.services.llm_service import FunctionCallParams from pipecat.services.llm_service import FunctionCallParams
from pipecat.services.openai.llm import OpenAILLMService from pipecat.services.openai.llm import OpenAILLMService
from pipecat.transports.daily.transport import DailyParams, DailyTransport from pipecat.transports.daily.transport import DailyParams, DailyTransport

View File

@@ -2747,7 +2747,7 @@ class DailyTransport(BaseTransport):
async def _on_participant_updated(self, participant): async def _on_participant_updated(self, participant):
"""Handle participant updated events.""" """Handle participant updated events."""
logger.debug(f"{self} participant updated: {participant}") logger.trace(f"{self} participant updated: {participant}")
await self._call_event_handler("on_participant_updated", participant) await self._call_event_handler("on_participant_updated", participant)
async def _on_transcription_message(self, message: Mapping[str, Any]) -> None: async def _on_transcription_message(self, message: Mapping[str, Any]) -> None: