Add client/server quickstart example

This commit is contained in:
Mark Backman
2025-07-28 14:07:42 -04:00
parent c5483411f2
commit eca366bfac
15 changed files with 3016 additions and 0 deletions

View File

@@ -4,6 +4,23 @@
# SPDX-License-Identifier: BSD 2-Clause License
#
"""Pipecat Quickstart Example.
The example runs a simple voice AI bot that you can connect to using your
browser and speak with it.
Required AI services:
- Deepgram (Speech-to-Text)
- OpenAI (LLM)
- Cartesia (Text-to-Speech)
The example connects between client and server using a P2P WebRTC connection.
Run the bot using::
python bot.py
"""
import argparse
import os