Skip to content

Commit

Permalink
Fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-daily committed Dec 20, 2024
1 parent dcf6b6e commit 41d0769
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/simple-chatbot/server/bot-gemini.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
from pipecat.processors.aggregators.openai_llm_context import OpenAILLMContext
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
from pipecat.processors.frameworks.rtvi import (
RTVIProcessor,
RTVIConfig,
RTVIBotTranscriptionProcessor,
RTVIConfig,
RTVIMetricsProcessor,
RTVIProcessor,
RTVISpeakingProcessor,
RTVIUserTranscriptionProcessor,
)
Expand Down
4 changes: 2 additions & 2 deletions examples/simple-chatbot/server/bot-openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@
from pipecat.processors.aggregators.openai_llm_context import OpenAILLMContext
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
from pipecat.processors.frameworks.rtvi import (
RTVIProcessor,
RTVIBotTranscriptionProcessor,
RTVIConfig,
RTVIMetricsProcessor,
RTVIProcessor,
RTVISpeakingProcessor,
RTVIUserTranscriptionProcessor,
RTVIConfig,
)
from pipecat.services.elevenlabs import ElevenLabsTTSService
from pipecat.services.openai import OpenAILLMService
Expand Down

0 comments on commit 41d0769

Please sign in to comment.