From 41d07692cadf9888b65a3b89425db1ef519b05a4 Mon Sep 17 00:00:00 2001 From: marcus-daily <111281783+marcus-daily@users.noreply.github.com> Date: Fri, 20 Dec 2024 13:41:55 +0000 Subject: [PATCH] Fix import order --- examples/simple-chatbot/server/bot-gemini.py | 4 ++-- examples/simple-chatbot/server/bot-openai.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/simple-chatbot/server/bot-gemini.py b/examples/simple-chatbot/server/bot-gemini.py index c233f46dd..f06d5d768 100644 --- a/examples/simple-chatbot/server/bot-gemini.py +++ b/examples/simple-chatbot/server/bot-gemini.py @@ -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, ) diff --git a/examples/simple-chatbot/server/bot-openai.py b/examples/simple-chatbot/server/bot-openai.py index a328bfb3a..932c77b9a 100644 --- a/examples/simple-chatbot/server/bot-openai.py +++ b/examples/simple-chatbot/server/bot-openai.py @@ -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