Remove unused imports

This commit is contained in:
Mark Backman
2025-05-07 13:12:18 -04:00
parent fb5438e9c2
commit efeb96c4e8
2 changed files with 1 additions and 4 deletions

View File

@@ -7,7 +7,6 @@
from loguru import logger from loguru import logger
from pipecat.frames.frames import ( from pipecat.frames.frames import (
Frame,
FunctionCallInProgressFrame, FunctionCallInProgressFrame,
FunctionCallResultFrame, FunctionCallResultFrame,
LLMFullResponseEndFrame, LLMFullResponseEndFrame,
@@ -17,7 +16,7 @@ from pipecat.frames.frames import (
) )
from pipecat.observers.base_observer import BaseObserver, FramePushed from pipecat.observers.base_observer import BaseObserver, FramePushed
from pipecat.processors.aggregators.openai_llm_context import OpenAILLMContextFrame from pipecat.processors.aggregators.openai_llm_context import OpenAILLMContextFrame
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor from pipecat.processors.frame_processor import FrameDirection
from pipecat.services.llm_service import LLMService from pipecat.services.llm_service import LLMService

View File

@@ -7,12 +7,10 @@
from loguru import logger from loguru import logger
from pipecat.frames.frames import ( from pipecat.frames.frames import (
Frame,
InterimTranscriptionFrame, InterimTranscriptionFrame,
TranscriptionFrame, TranscriptionFrame,
) )
from pipecat.observers.base_observer import BaseObserver, FramePushed from pipecat.observers.base_observer import BaseObserver, FramePushed
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
from pipecat.services.stt_service import STTService from pipecat.services.stt_service import STTService