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