Remove unused imports

This commit is contained in:
Mark Backman
2026-01-18 08:22:22 -05:00
parent 829c5f4604
commit ce7d823770
41 changed files with 12 additions and 53 deletions

View File

@@ -5,7 +5,6 @@
#
import os
from unittest.mock import AsyncMock
import pytest
from dotenv import load_dotenv

View File

@@ -43,7 +43,6 @@ For AWS Bedrock adapter:
import unittest
from google.genai.types import Content, Part
from openai.types.chat import ChatCompletionMessage
from pipecat.adapters.services.anthropic_adapter import AnthropicLLMAdapter
from pipecat.adapters.services.bedrock_adapter import AWSBedrockLLMAdapter
@@ -51,7 +50,6 @@ from pipecat.adapters.services.gemini_adapter import GeminiLLMAdapter
from pipecat.adapters.services.open_ai_adapter import OpenAILLMAdapter
from pipecat.processors.aggregators.llm_context import (
LLMContext,
LLMSpecificMessage,
LLMStandardMessage,
)

View File

@@ -5,7 +5,7 @@
#
import unittest
from unittest.mock import AsyncMock, MagicMock, patch
from unittest.mock import AsyncMock
import numpy as np

View File

@@ -4,7 +4,6 @@
# SPDX-License-Identifier: BSD 2-Clause License
#
import asyncio
import sys
import unittest
from unittest.mock import MagicMock, patch

View File

@@ -10,7 +10,6 @@ from pipecat.frames.frames import (
BotStartedSpeakingFrame,
BotStoppedSpeakingFrame,
FunctionCallFromLLM,
FunctionCallInProgressFrame,
FunctionCallResultFrame,
FunctionCallsStartedFrame,
InputAudioRawFrame,