-
Notifications
You must be signed in to change notification settings - Fork 437
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b5d5a0e
commit 276fd86
Showing
10 changed files
with
208 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Sphinx dependencies | ||
sphinx>=8.1.3 | ||
sphinx-rtd-theme | ||
sphinx-markdown-builder | ||
sphinx-autodoc-typehints | ||
toml | ||
|
||
# Install all extras individually to ensure they're properly resolved | ||
pipecat-ai[anthropic] | ||
pipecat-ai[assemblyai] | ||
pipecat-ai[aws] | ||
pipecat-ai[azure] | ||
pipecat-ai[canonical] | ||
pipecat-ai[cartesia] | ||
pipecat-ai[deepgram] | ||
pipecat-ai[elevenlabs] | ||
pipecat-ai[fal] | ||
pipecat-ai[fireworks] | ||
pipecat-ai[gladia] | ||
pipecat-ai[google] | ||
pipecat-ai[grok] | ||
pipecat-ai[groq] | ||
pipecat-ai[krisp] | ||
pipecat-ai[langchain] | ||
pipecat-ai[livekit] | ||
pipecat-ai[lmnt] | ||
pipecat-ai[moondream] | ||
pipecat-ai[nim] | ||
pipecat-ai[noisereduce] | ||
pipecat-ai[openai] | ||
pipecat-ai[openpipe] | ||
pipecat-ai[silero] | ||
pipecat-ai[simli] | ||
pipecat-ai[soundfile] | ||
pipecat-ai[websocket] | ||
pipecat-ai[whisper] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Force specific grpcio version for PlayHT | ||
grpcio>=1.68.0 | ||
pipecat-ai[playht] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Force specific grpcio version for Riva | ||
grpcio==1.65.4 | ||
pipecat-ai[riva] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
# Configuration | ||
DOCS_DIR=$(pwd) | ||
PROJECT_ROOT=$(cd ../../ && pwd) | ||
TEST_DIR="/tmp/rtd-test-$(date +%Y%m%d_%H%M%S)" | ||
|
||
echo "Creating test directory: $TEST_DIR" | ||
mkdir -p "$TEST_DIR" | ||
cd "$TEST_DIR" | ||
|
||
# Create single virtual environment | ||
python -m venv venv | ||
source venv/bin/activate | ||
|
||
echo "Installing base dependencies..." | ||
pip install --upgrade pip wheel setuptools | ||
pip install -r "$DOCS_DIR/requirements-base.txt" | ||
|
||
# Try to install optional dependencies, but don't fail if they don't work | ||
echo "Installing Riva dependencies..." | ||
pip install -r "$DOCS_DIR/requirements-riva.txt" || echo "Failed to install Riva dependencies" | ||
|
||
echo "Installing PlayHT dependencies..." | ||
pip install -r "$DOCS_DIR/requirements-playht.txt" || echo "Failed to install PlayHT dependencies" | ||
|
||
echo "Building documentation..." | ||
cd "$DOCS_DIR" | ||
sphinx-build -b html . "_build/html" | ||
|
||
echo "Build complete. Check _build/html directory for output." | ||
|
||
# Print installed packages for verification | ||
echo "Installed packages:" | ||
pip freeze |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters