refactor: change pipecat to submodule & add github alerts

This commit is contained in:
Sabiha Khan 2025-09-29 13:19:43 +05:30
parent 08d1e544ec
commit 6562963018
8 changed files with 249 additions and 3 deletions

25
scripts/setup_pipecat.sh Executable file
View file

@ -0,0 +1,25 @@
#!/bin/bash
# Setup script for using pipecat as a git submodule
# Get the project root directory (parent of scripts)
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
DOGRAH_DIR="$(dirname "$SCRIPT_DIR")"
cd "$DOGRAH_DIR"
echo "Setting up pipecat as a git submodule..."
# Initialize and update submodules
echo "Initializing git submodules..."
git submodule update --init --recursive
# Install pipecat in editable mode with all extras
echo "Installing pipecat dependencies..."
pip install -e ./pipecat[cartesia,deepgram,openai,elevenlabs,groq,google,azure,soundfile,silero,webrtc]
# Install other requirements
echo "Installing dograh API requirements..."
pip install -r api/requirements.txt
echo "Setup complete! Pipecat is now available as a git submodule."