Skip to content

Commit

Permalink
examples: remove commented out silero from storytelling
Browse files Browse the repository at this point in the history
  • Loading branch information
aconchillo committed May 14, 2024
1 parent 7c41246 commit 2b19d6b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions examples/storytelling-chatbot/src/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from pipecat.services.openai import OpenAILLMService
from pipecat.transports.services.daily import DailyParams, DailyTransport, DailyTransportMessageFrame

from pipecat.vad.silero import SileroVAD
from processors import StoryProcessor, StoryImageProcessor
from prompts import LLM_BASE_PROMPT, LLM_INTRO_PROMPT, CUE_USER_TURN
from utils.helpers import load_sounds, load_images
Expand All @@ -42,7 +41,6 @@ async def main(room_url, token=None):
token,
"Storytelling Bot",
DailyParams(
audio_in_enabled=True,
audio_out_enabled=True,
camera_out_enabled=True,
camera_out_width=768,
Expand All @@ -56,8 +54,6 @@ async def main(room_url, token=None):

# -------------- Services --------------- #

# vad = SileroVAD()

llm_service = OpenAILLMService(
api_key=os.getenv("OPENAI_API_KEY"),
model="gpt-4-turbo"
Expand Down Expand Up @@ -132,7 +128,6 @@ async def on_first_participant_joined(transport, participant):
# input.
main_pipeline = Pipeline([
transport.input(),
# vad,
user_responses,
llm_service,
story_processor,
Expand Down

0 comments on commit 2b19d6b

Please sign in to comment.