-
Notifications
You must be signed in to change notification settings - Fork 17
Fix Pipecat quickstart: correct package extra and service Settings API #232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -37,7 +37,7 @@ mkdir voice-agent && cd voice-agent | |
| Create a `requirements.txt` file: | ||
|
|
||
| ```text title="requirements.txt" | ||
| pipecat-ai[local-smart-turn-v3,silero,speechmatics,webrtc,openai,runner] | ||
| pipecat-ai[local-smart-turn,silero,speechmatics,webrtc,openai,runner] | ||
|
||
| pipecat-ai-small-webrtc-prebuilt | ||
| python-dotenv | ||
| loguru | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This quickstart switches to the newer
settings=...Settings(...)API for STT/LLM/TTS, but the other Pipecat docs/examples in this repo still use the olderparams=...InputParams(...)/voice_id=...style (e.g.,docs/integrations-and-sdks/pipecat/stt.mdxanddocs/integrations-and-sdks/pipecat/tts.mdx, plusassets/stt-full-example.py). Consider updating those pages/examples or adding a note about the new API to avoid readers mixing incompatible configuration styles.