dv-pipecat-ai 0.0.58.dev15__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dv_pipecat_ai-0.0.58.dev15/.dockerignore +28 -0
- dv_pipecat_ai-0.0.58.dev15/.github/workflows/android.yaml +48 -0
- dv_pipecat_ai-0.0.58.dev15/.github/workflows/build.yaml +44 -0
- dv_pipecat_ai-0.0.58.dev15/.github/workflows/coverage.yaml +54 -0
- dv_pipecat_ai-0.0.58.dev15/.github/workflows/format.yaml +46 -0
- dv_pipecat_ai-0.0.58.dev15/.github/workflows/github.yml +109 -0
- dv_pipecat_ai-0.0.58.dev15/.github/workflows/publish.yaml +84 -0
- dv_pipecat_ai-0.0.58.dev15/.github/workflows/publish_test.yaml +58 -0
- dv_pipecat_ai-0.0.58.dev15/.github/workflows/tests.yaml +52 -0
- dv_pipecat_ai-0.0.58.dev15/.gitignore +57 -0
- dv_pipecat_ai-0.0.58.dev15/.pre-commit-config.yaml +7 -0
- dv_pipecat_ai-0.0.58.dev15/.readthedocs.yaml +36 -0
- dv_pipecat_ai-0.0.58.dev15/CHANGELOG.md +2214 -0
- dv_pipecat_ai-0.0.58.dev15/CHANGELOG.md.template +62 -0
- dv_pipecat_ai-0.0.58.dev15/CONTRIBUTING.md +165 -0
- dv_pipecat_ai-0.0.58.dev15/Dockerfile +40 -0
- dv_pipecat_ai-0.0.58.dev15/LICENSE +24 -0
- dv_pipecat_ai-0.0.58.dev15/PKG-INFO +386 -0
- dv_pipecat_ai-0.0.58.dev15/README.md +266 -0
- dv_pipecat_ai-0.0.58.dev15/ansible.cfg +5 -0
- dv_pipecat_ai-0.0.58.dev15/ansible_deployment.sh +8 -0
- dv_pipecat_ai-0.0.58.dev15/cleanup_old_containers.yml +23 -0
- dv_pipecat_ai-0.0.58.dev15/codecov.yml +11 -0
- dv_pipecat_ai-0.0.58.dev15/create-new-machine/ansible.cfg +5 -0
- dv_pipecat_ai-0.0.58.dev15/create-new-machine/ansible_setup.sh +7 -0
- dv_pipecat_ai-0.0.58.dev15/create-new-machine/inventory.ini +7 -0
- dv_pipecat_ai-0.0.58.dev15/create-new-machine/replace_env.yml +20 -0
- dv_pipecat_ai-0.0.58.dev15/create-new-machine/setup_playbook.yml +104 -0
- dv_pipecat_ai-0.0.58.dev15/create_inventory.py +15 -0
- dv_pipecat_ai-0.0.58.dev15/delete_old_dockers.sh +17 -0
- dv_pipecat_ai-0.0.58.dev15/deploy.sh +38 -0
- dv_pipecat_ai-0.0.58.dev15/deploy_playbook.yml +24 -0
- dv_pipecat_ai-0.0.58.dev15/dev-requirements.txt +12 -0
- dv_pipecat_ai-0.0.58.dev15/docker-compose.dev.yml +13 -0
- dv_pipecat_ai-0.0.58.dev15/docs/ISSUE_TEMPLATE.md +22 -0
- dv_pipecat_ai-0.0.58.dev15/docs/PULL_REQUEST_TEMPLATE.md +1 -0
- dv_pipecat_ai-0.0.58.dev15/docs/README.md +10 -0
- dv_pipecat_ai-0.0.58.dev15/docs/api/Makefile +20 -0
- dv_pipecat_ai-0.0.58.dev15/docs/api/README.md +109 -0
- dv_pipecat_ai-0.0.58.dev15/docs/api/build-docs.sh +10 -0
- dv_pipecat_ai-0.0.58.dev15/docs/api/conf.py +252 -0
- dv_pipecat_ai-0.0.58.dev15/docs/api/index.rst +77 -0
- dv_pipecat_ai-0.0.58.dev15/docs/api/make.bat +35 -0
- dv_pipecat_ai-0.0.58.dev15/docs/api/requirements.txt +40 -0
- dv_pipecat_ai-0.0.58.dev15/docs/api/rtd-test.sh +38 -0
- dv_pipecat_ai-0.0.58.dev15/docs/architecture.md +17 -0
- dv_pipecat_ai-0.0.58.dev15/docs/frame-progress.md +46 -0
- dv_pipecat_ai-0.0.58.dev15/docs/frame.md +110 -0
- dv_pipecat_ai-0.0.58.dev15/docs/images/frame-progress-01.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/docs/images/frame-progress-02.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/docs/images/frame-progress-03.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/docs/images/frame-progress-04.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/docs/images/frame-progress-05.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/docs/images/frame-progress-06.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/docs/images/frame-progress-07.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/docs/images/frame-progress-08.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/docs/images/frame-progress-09.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/docs/images/frame-progress-10.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/docs/images/frame-progress-11.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/docs/images/frame-progress-12.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/docs/images/frame-progress-13.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/docs/images/frame-progress-14.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/docs/images/frame-progress-15.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/dot-env.template +89 -0
- dv_pipecat_ai-0.0.58.dev15/dump_logs.yml +13 -0
- dv_pipecat_ai-0.0.58.dev15/examples/README.md +88 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/README.md +45 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/javascript/README.md +27 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/javascript/index.html +34 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/javascript/package-lock.json +1081 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/javascript/package.json +20 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/javascript/src/app.js +216 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/javascript/src/style.css +98 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/javascript/vite.config.js +13 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/react-native/.nvmrc +1 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/react-native/README.md +60 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/react-native/app.json +75 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/react-native/assets/adaptive-icon.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/react-native/assets/favicon.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/react-native/assets/icon.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/react-native/assets/splash.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/react-native/babel.config.js +7 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/react-native/env.example +1 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/react-native/index.js +7 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/react-native/metro.config.js +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/react-native/package-lock.json +10983 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/react-native/package.json +31 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/client/react-native/src/App.js +121 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/server/README.md +50 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/server/env.example +3 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/server/requirements.txt +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/server/runner.py +64 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/server/server.py +147 -0
- dv_pipecat_ai-0.0.58.dev15/examples/bot-ready-signalling/server/signalling_bot.py +95 -0
- dv_pipecat_ai-0.0.58.dev15/examples/canonical-metrics/.gitignore +161 -0
- dv_pipecat_ai-0.0.58.dev15/examples/canonical-metrics/Dockerfile +10 -0
- dv_pipecat_ai-0.0.58.dev15/examples/canonical-metrics/README.md +66 -0
- dv_pipecat_ai-0.0.58.dev15/examples/canonical-metrics/bot.py +148 -0
- dv_pipecat_ai-0.0.58.dev15/examples/canonical-metrics/env.example +6 -0
- dv_pipecat_ai-0.0.58.dev15/examples/canonical-metrics/requirements.txt +5 -0
- dv_pipecat_ai-0.0.58.dev15/examples/canonical-metrics/runner.py +55 -0
- dv_pipecat_ai-0.0.58.dev15/examples/canonical-metrics/server.py +139 -0
- dv_pipecat_ai-0.0.58.dev15/examples/chatbot-audio-recording/.gitignore +161 -0
- dv_pipecat_ai-0.0.58.dev15/examples/chatbot-audio-recording/Dockerfile +15 -0
- dv_pipecat_ai-0.0.58.dev15/examples/chatbot-audio-recording/README.md +37 -0
- dv_pipecat_ai-0.0.58.dev15/examples/chatbot-audio-recording/bot.py +150 -0
- dv_pipecat_ai-0.0.58.dev15/examples/chatbot-audio-recording/env.example +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/chatbot-audio-recording/requirements.txt +5 -0
- dv_pipecat_ai-0.0.58.dev15/examples/chatbot-audio-recording/runner.py +56 -0
- dv_pipecat_ai-0.0.58.dev15/examples/chatbot-audio-recording/server.py +139 -0
- dv_pipecat_ai-0.0.58.dev15/examples/deployment/flyio-example/Dockerfile +13 -0
- dv_pipecat_ai-0.0.58.dev15/examples/deployment/flyio-example/README.md +39 -0
- dv_pipecat_ai-0.0.58.dev15/examples/deployment/flyio-example/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/deployment/flyio-example/bot.py +102 -0
- dv_pipecat_ai-0.0.58.dev15/examples/deployment/flyio-example/bot_runner.py +209 -0
- dv_pipecat_ai-0.0.58.dev15/examples/deployment/flyio-example/env.example +8 -0
- dv_pipecat_ai-0.0.58.dev15/examples/deployment/flyio-example/example-fly.toml +25 -0
- dv_pipecat_ai-0.0.58.dev15/examples/deployment/flyio-example/requirements.txt +5 -0
- dv_pipecat_ai-0.0.58.dev15/examples/deployment/modal-example/.gitignore +91 -0
- dv_pipecat_ai-0.0.58.dev15/examples/deployment/modal-example/README.md +37 -0
- dv_pipecat_ai-0.0.58.dev15/examples/deployment/modal-example/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/deployment/modal-example/app.py +74 -0
- dv_pipecat_ai-0.0.58.dev15/examples/deployment/modal-example/bot.py +89 -0
- dv_pipecat_ai-0.0.58.dev15/examples/deployment/modal-example/env.example +3 -0
- dv_pipecat_ai-0.0.58.dev15/examples/deployment/modal-example/requirements.txt +5 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/01-say-one-thing.py +59 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/01a-local-audio.py +49 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/01b-livekit-audio.py +108 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/01c-fastpitch.py +54 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/02-llm-say-one-thing.py +64 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/03-still-frame.py +62 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/03a-local-still-frame.py +64 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/03b-still-frame-imagen.py +65 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/04-utterance-and-speech.py +86 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/05-sync-speech-and-image.py +157 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/05a-local-sync-speech-and-image.py +197 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/06-listen-and-respond.py +131 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/06a-image-sync.py +154 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07-interruptible-vad.py +104 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07-interruptible.py +102 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07a-interruptible-anthropic.py +106 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07b-interruptible-langchain.py +135 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07c-interruptible-deepgram-vad.py +116 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07c-interruptible-deepgram.py +101 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07d-interruptible-elevenlabs-http.py +103 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07d-interruptible-elevenlabs.py +102 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07e-interruptible-playht-http.py +103 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07e-interruptible-playht.py +105 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07f-interruptible-azure.py +111 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07g-interruptible-openai.py +109 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07h-interruptible-openpipe.py +109 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07i-interruptible-xtts.py +103 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07j-interruptible-gladia.py +109 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07k-interruptible-lmnt.py +99 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07l-interruptible-together.py +115 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07m-interruptible-polly.py +109 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07n-interruptible-google.py +107 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07o-interruptible-assemblyai.py +108 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07p-interruptible-krisp.py +103 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07q-interruptible-rime-http.py +103 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07q-interruptible-rime.py +102 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07r-interruptible-riva-nim.py +95 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07s-interruptible-google-audio-in.py +277 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/07t-interruptible-fish.py +102 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/08-bots-arguing.py +144 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/09-mirror.py +92 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/09a-local-mirror.py +104 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/10-wake-phrase.py +92 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/11-sound-effects.py +149 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/12-describe-video.py +110 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/12a-describe-video-gemini-flash.py +110 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/12b-describe-video-gpt-4o.py +109 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/12c-describe-video-anthropic.py +109 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/13-whisper-transcription.py +59 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/13a-whisper-local.py +52 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/13b-deepgram-transcription.py +63 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/13c-gladia-transcription.py +63 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/13d-assemblyai-transcription.py +62 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/14-function-calling.py +135 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/14a-function-calling-anthropic.py +122 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/14b-function-calling-anthropic-video.py +178 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/14c-function-calling-together.py +131 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/14d-function-calling-video.py +164 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/14e-function-calling-gemini.py +177 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/14f-function-calling-groq.py +138 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/14g-function-calling-grok.py +135 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/14h-function-calling-azure.py +139 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/14i-function-calling-fireworks.py +138 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/14j-function-calling-nim.py +138 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/14k-function-calling-cerebras.py +146 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/14l-function-calling-deepseek.py +146 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/14m-function-calling-openrouter.py +140 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/14n-function-calling-perplexity.py +106 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/15-switch-voices.py +156 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/15a-switch-languages.py +149 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/16-gpu-container-local-bot.py +142 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/17-detect-user-idle.py +131 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/18-gstreamer-filesrc.py +71 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/18a-gstreamer-videotestsrc.py +65 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/19-openai-realtime-beta.py +177 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/20a-persistent-context-openai.py +235 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/20b-persistent-context-openai-realtime.py +260 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/20c-persistent-context-anthropic.py +232 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/20d-persistent-context-gemini.py +289 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/21-tavus-layer.py +134 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/22-natural-conversation.py +169 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/22b-natural-conversation-proposal.py +394 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/22c-natural-conversation-mixed-llms.py +607 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/22d-natural-conversation-gemini-audio.py +779 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/23-bot-background-sound.py +119 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/24-stt-mute-filter.py +144 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/25-google-audio-in.py +375 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/26-gemini-multimodal-live.py +94 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/26a-gemini-multimodal-live-transcription.py +109 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/26b-gemini-multimodal-live-function-calling.py +140 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/26c-gemini-multimodal-live-video.py +111 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/26d-gemini-multimodal-live-text.py +132 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/26e-gemini-multimodal-google-search.py +108 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/27-simli-layer.py +102 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/28a-transcription-processor-openai.py +177 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/28b-transcript-processor-anthropic.py +177 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/28c-transcription-processor-gemini.py +210 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/29-livekit-audio-chat.py +207 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/30-observer.py +146 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/31-heartbeats.py +43 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/32-gemini-grounding-metadata.py +131 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/33-gemini-rag.py +254 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/34-audio-recording.py +186 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/assets/ding1.wav +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/assets/ding2.wav +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/assets/rag-content.txt +1855 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/assets/sc-default.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/assets/sc-listen-1.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/assets/sc-listen-2.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/assets/sc-talk.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/assets/sc-think-1.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/assets/sc-think-2.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/assets/sc-think-3.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/assets/sc-think-4.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/assets/speaking.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/assets/waiting.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/foundational/runner.py +64 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/.gitignore +7 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/README.md +55 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/client/javascript/README.md +27 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/client/javascript/index.html +37 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/client/javascript/package-lock.json +1449 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/client/javascript/package.json +24 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/client/javascript/src/app.ts +268 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/client/javascript/src/style.css +98 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/client/javascript/src/util/instantVoiceHelper.ts +39 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/client/javascript/src/util/soundUtils.ts +8 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/client/javascript/tsconfig.json +111 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/client/javascript/vite.config.js +15 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/client/javascript/yarn.lock +339 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/server/env.example +3 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/server/pyproject.toml +11 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/server/requirements.txt +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/server/src/server.py +200 -0
- dv_pipecat_ai-0.0.58.dev15/examples/instant-voice/server/src/single_bot.py +118 -0
- dv_pipecat_ai-0.0.58.dev15/examples/local-input-select-stt/README.md +88 -0
- dv_pipecat_ai-0.0.58.dev15/examples/local-input-select-stt/bot.py +65 -0
- dv_pipecat_ai-0.0.58.dev15/examples/local-input-select-stt/demo.gif +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/local-input-select-stt/requirements.txt +8 -0
- dv_pipecat_ai-0.0.58.dev15/examples/local-input-select-stt/select_audio_device.py +247 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/.dockerignore +163 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/.gitignore +161 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/Dockerfile +25 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/Dockerfile.intel +76 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/README.md +44 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot01.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot010.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot011.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot012.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot013.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot014.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot015.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot016.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot017.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot018.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot019.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot02.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot020.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot021.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot022.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot023.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot024.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot025.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot03.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot04.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot05.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot06.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot07.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot08.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/assets/robot09.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/bot.py +213 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/env.example +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/image.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/requirements.txt +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/runner.py +55 -0
- dv_pipecat_ai-0.0.58.dev15/examples/moondream-chatbot/server.py +136 -0
- dv_pipecat_ai-0.0.58.dev15/examples/news-chatbot/.gitignore +51 -0
- dv_pipecat_ai-0.0.58.dev15/examples/news-chatbot/README.md +48 -0
- dv_pipecat_ai-0.0.58.dev15/examples/news-chatbot/client/javascript/README.md +27 -0
- dv_pipecat_ai-0.0.58.dev15/examples/news-chatbot/client/javascript/index.html +40 -0
- dv_pipecat_ai-0.0.58.dev15/examples/news-chatbot/client/javascript/package-lock.json +1156 -0
- dv_pipecat_ai-0.0.58.dev15/examples/news-chatbot/client/javascript/package.json +21 -0
- dv_pipecat_ai-0.0.58.dev15/examples/news-chatbot/client/javascript/src/app.js +341 -0
- dv_pipecat_ai-0.0.58.dev15/examples/news-chatbot/client/javascript/src/style.css +134 -0
- dv_pipecat_ai-0.0.58.dev15/examples/news-chatbot/client/javascript/vite.config.js +13 -0
- dv_pipecat_ai-0.0.58.dev15/examples/news-chatbot/server/README.md +52 -0
- dv_pipecat_ai-0.0.58.dev15/examples/news-chatbot/server/env.example +5 -0
- dv_pipecat_ai-0.0.58.dev15/examples/news-chatbot/server/news_bot.py +165 -0
- dv_pipecat_ai-0.0.58.dev15/examples/news-chatbot/server/requirements.txt +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/news-chatbot/server/runner.py +64 -0
- dv_pipecat_ai-0.0.58.dev15/examples/news-chatbot/server/server.py +147 -0
- dv_pipecat_ai-0.0.58.dev15/examples/patient-intake/Dockerfile +16 -0
- dv_pipecat_ai-0.0.58.dev15/examples/patient-intake/README.md +95 -0
- dv_pipecat_ai-0.0.58.dev15/examples/patient-intake/assets/clack-short-quiet.wav +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/patient-intake/assets/clack-short.wav +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/patient-intake/assets/clack.wav +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/patient-intake/assets/ding.wav +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/patient-intake/assets/ding2.wav +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/patient-intake/assets/ding3.wav +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/patient-intake/bot.py +363 -0
- dv_pipecat_ai-0.0.58.dev15/examples/patient-intake/env.example +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/patient-intake/image.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/patient-intake/requirements.txt +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/patient-intake/runner.py +55 -0
- dv_pipecat_ai-0.0.58.dev15/examples/patient-intake/server.py +136 -0
- dv_pipecat_ai-0.0.58.dev15/examples/phone-chatbot/.dockerignore +3 -0
- dv_pipecat_ai-0.0.58.dev15/examples/phone-chatbot/.gitignore +165 -0
- dv_pipecat_ai-0.0.58.dev15/examples/phone-chatbot/Dockerfile +40 -0
- dv_pipecat_ai-0.0.58.dev15/examples/phone-chatbot/README.md +209 -0
- dv_pipecat_ai-0.0.58.dev15/examples/phone-chatbot/bot_daily.py +217 -0
- dv_pipecat_ai-0.0.58.dev15/examples/phone-chatbot/bot_daily_gemini.py +334 -0
- dv_pipecat_ai-0.0.58.dev15/examples/phone-chatbot/bot_runner.py +265 -0
- dv_pipecat_ai-0.0.58.dev15/examples/phone-chatbot/bot_twilio.py +117 -0
- dv_pipecat_ai-0.0.58.dev15/examples/phone-chatbot/env.example +8 -0
- dv_pipecat_ai-0.0.58.dev15/examples/phone-chatbot/fly.example.toml +19 -0
- dv_pipecat_ai-0.0.58.dev15/examples/phone-chatbot/image.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/phone-chatbot/requirements.txt +6 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/.gitignore +161 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/Dockerfile +27 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/README.md +108 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/backchannel.py +78 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/bot.py +535 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/cache.py +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/env.example +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/env_config.py +133 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Anuj/got_it.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Anuj/hmm.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Anuj/okay.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Brittany/got_it.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Brittany/hmm.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Brittany/okay.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Dakota/got_it.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Dakota/hmm.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Dakota/okay.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Jonathan/got_it.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Jonathan/hmm.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Jonathan/okay.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Monica/got_it.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Monica/hmm.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Monica/okay.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Myra/got_it.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Myra/hmm.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Myra/okay.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Naina/got_it.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Naina/hmm.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Naina/okay.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Raj/got_it.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Raj/hmm.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/Raj/okay.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/fillers/en-IN-RehaanNeural/en_got_it.pcm +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/hold_detector.py +25 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/rag/converted_data.py +376 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/rag/helpers.py +82 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/rag/weaviate_client.py +38 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/rag/weaviate_script.py +15 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/remote-Dockerfile +24 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/remote-requirements.txt +24 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/requirements.txt +24 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/server.py +936 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/templates/streams.xml +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/templates/uv-stream.xml +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/ultravox-server.py +273 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/utils/api_calls.py +29 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/utils/callbacks.py +84 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/utils/frames_monitor.py +39 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/utils/generic_functions/cleanup.py +100 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/utils/generic_functions/common.py +220 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/utils/generic_functions/response_handler.py +230 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/utils/llm.py +26 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/utils/llm_functions/end_call_handler.py +193 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/utils/llm_functions/generic_function.py +138 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/utils/llm_functions/query_kb.py +51 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/utils/llm_functions/switch_language.py +74 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/utils/pipeline.py +103 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/utils/stt.py +78 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/utils/tools.py +46 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/utils/transcript.py +274 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/utils/tts.py +373 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/voicemail_detector.py +77 -0
- dv_pipecat_ai-0.0.58.dev15/examples/plivo-chatbot/webcall_bot.py +449 -0
- dv_pipecat_ai-0.0.58.dev15/examples/sentry-metrics/.gitignore +161 -0
- dv_pipecat_ai-0.0.58.dev15/examples/sentry-metrics/Dockerfile +15 -0
- dv_pipecat_ai-0.0.58.dev15/examples/sentry-metrics/README.md +29 -0
- dv_pipecat_ai-0.0.58.dev15/examples/sentry-metrics/bot.py +112 -0
- dv_pipecat_ai-0.0.58.dev15/examples/sentry-metrics/env.example +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/sentry-metrics/requirements.txt +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/sentry-metrics/runner.py +56 -0
- dv_pipecat_ai-0.0.58.dev15/examples/sentry-metrics/server.py +139 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/.gitignore +51 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/README.md +111 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/.gitignore +10 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/LICENSE +24 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/README.md +20 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/build.gradle.kts +5 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/files/screenshot.jpg +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/gradle/libs.versions.toml +34 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/gradle.properties +23 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/gradlew +185 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/gradlew.bat +89 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/settings.gradle.kts +23 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/.gitignore +1 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/build.gradle.kts +75 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/proguard-rules.pro +21 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/AndroidManifest.xml +36 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/MainActivity.kt +257 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/Preferences.kt +75 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/RTVIApplication.kt +10 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/VoiceClientManager.kt +193 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/ui/AudioIndicator.kt +70 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/ui/BotIndicator.kt +93 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/ui/InCallFooter.kt +89 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/ui/InCallHeader.kt +49 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/ui/InCallLayout.kt +70 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/ui/PermissionScreen.kt +99 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/ui/Timer.kt +72 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/ui/UserCamButton.kt +110 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/ui/UserMicButton.kt +114 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/ui/theme/Color.kt +22 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/ui/theme/Theme.kt +36 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/ui/theme/Type.kt +40 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/utils/RealTimeClock.kt +21 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/java/ai/pipecat/simple_chatbot_client/utils/TimeUtils.kt +64 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/drawable/ic_launcher_background.xml +170 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/drawable/ic_launcher_foreground.xml +30 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/drawable/microphone.xml +1 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/drawable/microphone_off.xml +1 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/drawable/phone_hangup.xml +1 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/drawable/timer_outline.xml +1 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/drawable/video.xml +1 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/drawable/video_off.xml +1 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/font/inter.ttf +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +6 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +6 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/mipmap-hdpi/ic_launcher.webp +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/mipmap-hdpi/ic_launcher_round.webp +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/mipmap-mdpi/ic_launcher.webp +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/mipmap-mdpi/ic_launcher_round.webp +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/mipmap-xhdpi/ic_launcher.webp +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/mipmap-xhdpi/ic_launcher_round.webp +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/mipmap-xxhdpi/ic_launcher.webp +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/mipmap-xxxhdpi/ic_launcher.webp +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/values/strings.xml +3 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/android/simple-chatbot-client/src/main/res/values/themes.xml +5 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/.gitignore +2 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/README.md +18 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/Assets.xcassets/AppIcon.appiconset/Contents.json +14 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/Assets.xcassets/AppIcon.appiconset/appstore.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/Assets.xcassets/Contents.json +6 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/Assets.xcassets/pipecat.imageset/Contents.json +21 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/Assets.xcassets/pipecat.imageset/Square Black.svg +8 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/Info.plist +19 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/Preview Content/Preview Assets.xcassets/Contents.json +6 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/SimpleChatbotApp.swift +18 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/model/CallContainerModel.swift +230 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/model/MockCallContainerModel.swift +35 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/views/MeetingView.swift +107 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/views/PreJoinView.swift +42 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/views/components/MicrophoneView.swift +44 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/views/components/ToastModifier.swift +31 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/views/components/WaveformView.swift +93 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/views/extensions/CustomColors.swift +27 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/views/settings/SettingsManager.swift +21 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/views/settings/SettingsPreference.swift +8 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot/views/settings/SettingsView.swift +80 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot.xcodeproj/project.pbxproj +704 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +32 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbot.xcodeproj/xcshareddata/xcschemes/SimpleChatbot.xcscheme +78 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbotTests/SimpleChatbotTests.swift +29 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbotUITests/SimpleChatbotUITests.swift +34 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/ios/SimpleChatbotUITests/SimpleChatbotUITestsLaunchTests.swift +25 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/javascript/README.md +27 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/javascript/index.html +40 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/javascript/package-lock.json +1156 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/javascript/package.json +21 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/javascript/src/app.js +314 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/javascript/src/style.css +98 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/prebuilt/README.md +15 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/.gitignore +24 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/README.md +27 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/eslint.config.js +28 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/index.html +15 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/package-lock.json +3498 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/package.json +32 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/src/App.css +82 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/src/App.tsx +51 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/src/components/ConnectButton.tsx +40 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/src/components/DebugDisplay.css +26 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/src/components/DebugDisplay.tsx +144 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/src/components/StatusDisplay.tsx +11 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/src/main.tsx +9 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/src/providers/RTVIProvider.tsx +22 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/tsconfig.json +25 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/tsconfig.node.json +10 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/client/react/vite.config.ts +7 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/image.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/Dockerfile +16 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/README.md +72 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot01.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot010.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot011.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot012.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot013.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot014.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot015.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot016.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot017.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot018.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot019.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot02.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot020.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot021.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot022.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot023.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot024.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot025.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot03.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot04.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot05.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot06.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot07.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot08.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/assets/robot09.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/bot-gemini.py +204 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/bot-openai.py +230 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/env.example +6 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/requirements.txt +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/runner.py +56 -0
- dv_pipecat_ai-0.0.58.dev15/examples/simple-chatbot/server/server.py +242 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/.dockerignore +2 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/.gitignore +158 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/Dockerfile +54 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/README.md +84 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/env.example +6 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/.eslintrc.json +3 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/.gitignore +36 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/README.md +36 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/app/favicon.ico +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/app/globals.css +109 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/app/layout.tsx +46 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/app/opengraph-image.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/app/page.tsx +16 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/app/twitter-image.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/app/utils.ts +6 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/App.tsx +81 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/AudioIndicator/index.tsx +69 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/DevicePicker/index.tsx +139 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/MicToggle/index.tsx +34 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/Setup.tsx +94 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/Story.tsx +81 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/StoryTranscript/StoryTranscript.module.css +42 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/StoryTranscript/index.tsx +55 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/UserInputIndicator/UserInputIndicator.module.css +65 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/UserInputIndicator/index.tsx +67 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/VideoTile/VideoTile.module.css +34 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/VideoTile/index.tsx +27 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/WaveText/WaveText.module.css +68 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/WaveText/index.tsx +23 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/ui/button.tsx +56 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/ui/select.tsx +160 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components/ui/typewriter.tsx +61 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/components.json +17 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/env.example +1 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/next.config.mjs +15 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/package-lock.json +5952 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/package.json +38 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/postcss.config.js +6 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/public/alpha-mask.gif +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/public/bg.jpg +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/tailwind.config.ts +86 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/frontend/tsconfig.json +40 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/image.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/requirements.txt +5 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/src/assets/book1.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/src/assets/book2.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/src/assets/ding.wav +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/src/assets/listening.wav +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/src/assets/talking.wav +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/src/bot.py +148 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/src/bot_runner.py +239 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/src/processors.py +195 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/src/prompts.py +68 -0
- dv_pipecat_ai-0.0.58.dev15/examples/storytelling-chatbot/src/utils/helpers.py +42 -0
- dv_pipecat_ai-0.0.58.dev15/examples/studypal/README.md +13 -0
- dv_pipecat_ai-0.0.58.dev15/examples/studypal/env.example +5 -0
- dv_pipecat_ai-0.0.58.dev15/examples/studypal/requirements.txt +5 -0
- dv_pipecat_ai-0.0.58.dev15/examples/studypal/runner.py +64 -0
- dv_pipecat_ai-0.0.58.dev15/examples/studypal/studypal.py +186 -0
- dv_pipecat_ai-0.0.58.dev15/examples/telnyx-chatbot/.gitignore +161 -0
- dv_pipecat_ai-0.0.58.dev15/examples/telnyx-chatbot/Dockerfile +20 -0
- dv_pipecat_ai-0.0.58.dev15/examples/telnyx-chatbot/README.md +112 -0
- dv_pipecat_ai-0.0.58.dev15/examples/telnyx-chatbot/bot.py +103 -0
- dv_pipecat_ai-0.0.58.dev15/examples/telnyx-chatbot/env.example +3 -0
- dv_pipecat_ai-0.0.58.dev15/examples/telnyx-chatbot/requirements.txt +5 -0
- dv_pipecat_ai-0.0.58.dev15/examples/telnyx-chatbot/server.py +46 -0
- dv_pipecat_ai-0.0.58.dev15/examples/telnyx-chatbot/templates/streams.xml.template +7 -0
- dv_pipecat_ai-0.0.58.dev15/examples/translation-chatbot/.gitignore +161 -0
- dv_pipecat_ai-0.0.58.dev15/examples/translation-chatbot/Dockerfile +14 -0
- dv_pipecat_ai-0.0.58.dev15/examples/translation-chatbot/README.md +33 -0
- dv_pipecat_ai-0.0.58.dev15/examples/translation-chatbot/bot.py +208 -0
- dv_pipecat_ai-0.0.58.dev15/examples/translation-chatbot/env.example +5 -0
- dv_pipecat_ai-0.0.58.dev15/examples/translation-chatbot/image.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/examples/translation-chatbot/requirements.txt +4 -0
- dv_pipecat_ai-0.0.58.dev15/examples/translation-chatbot/runner.py +55 -0
- dv_pipecat_ai-0.0.58.dev15/examples/translation-chatbot/server.py +136 -0
- dv_pipecat_ai-0.0.58.dev15/examples/twilio-chatbot/.gitignore +161 -0
- dv_pipecat_ai-0.0.58.dev15/examples/twilio-chatbot/Dockerfile +20 -0
- dv_pipecat_ai-0.0.58.dev15/examples/twilio-chatbot/README.md +140 -0
- dv_pipecat_ai-0.0.58.dev15/examples/twilio-chatbot/bot.py +140 -0
- dv_pipecat_ai-0.0.58.dev15/examples/twilio-chatbot/client.py +201 -0
- dv_pipecat_ai-0.0.58.dev15/examples/twilio-chatbot/env.example +3 -0
- dv_pipecat_ai-0.0.58.dev15/examples/twilio-chatbot/requirements.txt +5 -0
- dv_pipecat_ai-0.0.58.dev15/examples/twilio-chatbot/server.py +54 -0
- dv_pipecat_ai-0.0.58.dev15/examples/twilio-chatbot/templates/streams.xml.template +7 -0
- dv_pipecat_ai-0.0.58.dev15/examples/websocket-server/Dockerfile +15 -0
- dv_pipecat_ai-0.0.58.dev15/examples/websocket-server/README.md +28 -0
- dv_pipecat_ai-0.0.58.dev15/examples/websocket-server/bot.py +154 -0
- dv_pipecat_ai-0.0.58.dev15/examples/websocket-server/env.example +8 -0
- dv_pipecat_ai-0.0.58.dev15/examples/websocket-server/frames.proto +44 -0
- dv_pipecat_ai-0.0.58.dev15/examples/websocket-server/index.html +211 -0
- dv_pipecat_ai-0.0.58.dev15/examples/websocket-server/requirements.txt +2 -0
- dv_pipecat_ai-0.0.58.dev15/fetch_logs.yml +16 -0
- dv_pipecat_ai-0.0.58.dev15/inventory.ini +11 -0
- dv_pipecat_ai-0.0.58.dev15/k8s/dv-pipecat/.helmignore +23 -0
- dv_pipecat_ai-0.0.58.dev15/k8s/dv-pipecat/Chart.yaml +6 -0
- dv_pipecat_ai-0.0.58.dev15/k8s/dv-pipecat/templates/_helpers.tpl +63 -0
- dv_pipecat_ai-0.0.58.dev15/k8s/dv-pipecat/templates/backendconfig.yaml +22 -0
- dv_pipecat_ai-0.0.58.dev15/k8s/dv-pipecat/templates/deployment.yaml +95 -0
- dv_pipecat_ai-0.0.58.dev15/k8s/dv-pipecat/templates/hpa.yaml +32 -0
- dv_pipecat_ai-0.0.58.dev15/k8s/dv-pipecat/templates/ingress.yaml +41 -0
- dv_pipecat_ai-0.0.58.dev15/k8s/dv-pipecat/templates/service.yaml +17 -0
- dv_pipecat_ai-0.0.58.dev15/k8s/dv-pipecat/values-prod.yaml +57 -0
- dv_pipecat_ai-0.0.58.dev15/k8s/dv-pipecat/values-stage.yaml +56 -0
- dv_pipecat_ai-0.0.58.dev15/k8s/dv-pipecat/values.yaml +102 -0
- dv_pipecat_ai-0.0.58.dev15/merge-code-into-single-file.sh +86 -0
- dv_pipecat_ai-0.0.58.dev15/pipecat.png +0 -0
- dv_pipecat_ai-0.0.58.dev15/pyproject.toml +119 -0
- dv_pipecat_ai-0.0.58.dev15/restart.sh +20 -0
- dv_pipecat_ai-0.0.58.dev15/restart_playbook.yml +16 -0
- dv_pipecat_ai-0.0.58.dev15/scripts/pre-commit.sh +3 -0
- dv_pipecat_ai-0.0.58.dev15/setup.cfg +4 -0
- dv_pipecat_ai-0.0.58.dev15/src/dv_pipecat_ai.egg-info/PKG-INFO +386 -0
- dv_pipecat_ai-0.0.58.dev15/src/dv_pipecat_ai.egg-info/SOURCES.txt +877 -0
- dv_pipecat_ai-0.0.58.dev15/src/dv_pipecat_ai.egg-info/dependency_links.txt +1 -0
- dv_pipecat_ai-0.0.58.dev15/src/dv_pipecat_ai.egg-info/requires.txt +144 -0
- dv_pipecat_ai-0.0.58.dev15/src/dv_pipecat_ai.egg-info/top_level.txt +1 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/__init__.py +13 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/filters/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/filters/base_audio_filter.py +47 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/filters/koala_filter.py +75 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/filters/krisp_filter.py +94 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/filters/noisereduce_filter.py +52 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/mixers/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/mixers/base_audio_mixer.py +53 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/mixers/soundfile_mixer.py +146 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/resamplers/__init__.py +1 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/resamplers/base_audio_resampler.py +30 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/resamplers/resampy_resampler.py +25 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/resamplers/soxr_resampler.py +25 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/utils.py +135 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/vad/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/vad/data/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/vad/data/silero_vad.onnx +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/vad/silero.py +167 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/audio/vad/vad_analyzer.py +143 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/clocks/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/clocks/base_clock.py +17 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/clocks/system_clock.py +20 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/frames/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/frames/frames.proto +44 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/frames/frames.py +842 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/frames/protobufs/frames_pb2.py +32 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/metrics/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/metrics/metrics.py +32 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/observers/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/observers/base_observer.py +44 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/observers/loggers/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/observers/loggers/llm_log_observer.py +85 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/observers/loggers/transcription_log_observer.py +54 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/pipeline/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/pipeline/base_pipeline.py +19 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/pipeline/base_task.py +66 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/pipeline/parallel_pipeline.py +220 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/pipeline/pipeline.py +95 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/pipeline/runner.py +79 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/pipeline/sync_parallel_pipeline.py +171 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/pipeline/task.py +439 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/pipeline/task_observer.py +117 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/pipeline/to_be_updated/merge_pipeline.py +23 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/aggregators/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/aggregators/gated.py +87 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/aggregators/gated_openai_llm_context.py +58 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/aggregators/llm_response.py +500 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/aggregators/openai_llm_context.py +271 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/aggregators/sentence.py +52 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/aggregators/user_response.py +26 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/aggregators/vision_image_frame.py +49 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/async_generator.py +43 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/audio/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/audio/audio_buffer_processor.py +248 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/audio/vad/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/audio/vad/silero.py +97 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/dtmf_aggregator.py +115 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/filters/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/filters/frame_filter.py +32 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/filters/function_filter.py +38 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/filters/identity_filter.py +30 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/filters/null_filter.py +25 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/filters/stt_mute_filter.py +205 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/filters/wake_check_filter.py +87 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/filters/wake_notifier_filter.py +40 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/frame_processor.py +404 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/frameworks/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/frameworks/langchain.py +75 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/frameworks/rtvi.py +1157 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/gstreamer/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/gstreamer/pipeline_source.py +211 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/idle_frame_processor.py +68 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/logger.py +43 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/metrics/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/metrics/frame_processor_metrics.py +86 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/metrics/sentry.py +62 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/text_transformer.py +38 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/transcript_processor.py +243 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/two_stage_user_idle_processor.py +67 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/processors/user_idle_processor.py +188 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/serializers/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/serializers/base_serializer.py +33 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/serializers/exotel.py +80 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/serializers/livekit.py +45 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/serializers/plivo.py +97 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/serializers/protobuf.py +95 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/serializers/telnyx.py +129 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/serializers/twilio.py +95 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/ai_services.py +952 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/anthropic.py +816 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/assemblyai.py +156 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/aws.py +263 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/azure.py +1013 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/azure_old.py +812 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/base_whisper.py +175 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/canonical.py +206 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/cartesia.py +399 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/cerebras.py +75 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/deepgram.py +285 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/deepseek.py +78 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/elevenlabs.py +591 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/fal.py +86 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/fireworks.py +68 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/fish.py +214 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/gemini_multimodal_live/__init__.py +1 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/gemini_multimodal_live/audio_transcriber.py +100 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/gemini_multimodal_live/events.py +151 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/gemini_multimodal_live/gemini.py +711 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/gladia.py +252 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/google/__init__.py +3 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/google/frames.py +33 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/google/google.py +1999 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/google/rtvi.py +54 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/grok.py +217 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/groq.py +100 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/lmnt.py +224 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/moondream.py +85 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/nim.py +97 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/ollama.py +12 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/openai.py +698 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/openai_realtime_beta/__init__.py +2 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/openai_realtime_beta/context.py +240 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/openai_realtime_beta/events.py +433 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/openai_realtime_beta/frames.py +19 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/openai_realtime_beta/openai.py +581 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/openpipe.py +67 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/openrouter.py +44 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/perplexity.py +130 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/playht.py +437 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/rime.py +422 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/riva.py +292 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/simli.py +130 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/tavus.py +143 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/to_be_updated/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/to_be_updated/cloudflare_ai_service.py +69 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/to_be_updated/google_ai_service.py +30 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/to_be_updated/huggingface_ai_service.py +33 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/to_be_updated/mock_ai_service.py +28 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/together.py +39 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/websocket_service.py +124 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/whisper.py +347 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/services/xtts.py +187 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/sync/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/sync/base_notifier.py +17 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/sync/event_notifier.py +21 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/tests/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/tests/utils.py +154 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transcriptions/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transcriptions/language.py +437 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transports/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transports/base_input.py +222 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transports/base_output.py +433 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transports/base_transport.py +104 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transports/local/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transports/local/audio.py +149 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transports/local/tk.py +177 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transports/network/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transports/network/fastapi_websocket.py +306 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transports/network/websocket_client.py +269 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transports/network/websocket_server.py +313 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transports/services/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transports/services/daily.py +1356 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transports/services/helpers/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transports/services/helpers/daily_rest.py +404 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/transports/services/livekit.py +600 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/utils/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/utils/asyncio.py +194 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/utils/logger_config.py +182 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/utils/network.py +27 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/utils/string.py +25 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/utils/test_frame_processor.py +46 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/utils/text/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/utils/text/base_text_filter.py +26 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/utils/text/markdown_text_filter.py +210 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/utils/time.py +28 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/utils/utils.py +83 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/vad/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/vad/silero.py +16 -0
- dv_pipecat_ai-0.0.58.dev15/src/pipecat/vad/vad_analyzer.py +15 -0
- dv_pipecat_ai-0.0.58.dev15/stop_container.yml +13 -0
- dv_pipecat_ai-0.0.58.dev15/test-requirements.txt +1 -0
- dv_pipecat_ai-0.0.58.dev15/tests/__init__.py +0 -0
- dv_pipecat_ai-0.0.58.dev15/tests/integration/integration_azure_llm.py +33 -0
- dv_pipecat_ai-0.0.58.dev15/tests/integration/integration_ollama_llm.py +28 -0
- dv_pipecat_ai-0.0.58.dev15/tests/integration/integration_openai_llm.py +128 -0
- dv_pipecat_ai-0.0.58.dev15/tests/test_aggregators.py +76 -0
- dv_pipecat_ai-0.0.58.dev15/tests/test_context_aggregators.py +671 -0
- dv_pipecat_ai-0.0.58.dev15/tests/test_daily_transport_service.py +92 -0
- dv_pipecat_ai-0.0.58.dev15/tests/test_filters.py +120 -0
- dv_pipecat_ai-0.0.58.dev15/tests/test_langchain.py +88 -0
- dv_pipecat_ai-0.0.58.dev15/tests/test_markdown_text_filter.py +230 -0
- dv_pipecat_ai-0.0.58.dev15/tests/test_pipeline.py +126 -0
- dv_pipecat_ai-0.0.58.dev15/tests/test_protobuf_serializer.py +38 -0
- dv_pipecat_ai-0.0.58.dev15/tests/test_stt_mute_filter.py +248 -0
- dv_pipecat_ai-0.0.58.dev15/tests/test_transcript_processor.py +428 -0
- dv_pipecat_ai-0.0.58.dev15/tests/test_user_idle_processor.py +216 -0
- dv_pipecat_ai-0.0.58.dev15/tests/test_utils_network.py +34 -0
- dv_pipecat_ai-0.0.58.dev15/tests/test_utils_string.py +52 -0
- dv_pipecat_ai-0.0.58.dev15/tests/test_websocket_transport.py +119 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# flyctl launch added from .gitignore
|
|
2
|
+
**/.vscode
|
|
3
|
+
**/env
|
|
4
|
+
**/__pycache__
|
|
5
|
+
**/*~
|
|
6
|
+
**/venv
|
|
7
|
+
#*#
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
**/.Python
|
|
11
|
+
**/build
|
|
12
|
+
**/develop-eggs
|
|
13
|
+
**/downloads
|
|
14
|
+
**/eggs
|
|
15
|
+
**/.eggs
|
|
16
|
+
**/lib
|
|
17
|
+
**/lib64
|
|
18
|
+
**/parts
|
|
19
|
+
**/sdist
|
|
20
|
+
**/var
|
|
21
|
+
**/wheels
|
|
22
|
+
**/share/python-wheels
|
|
23
|
+
**/*.egg-info
|
|
24
|
+
**/.installed.cfg
|
|
25
|
+
**/*.egg
|
|
26
|
+
**/MANIFEST
|
|
27
|
+
**/.DS_Store
|
|
28
|
+
fly.toml
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
name: android
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
paths:
|
|
8
|
+
- "examples/simple-chatbot/client/android/**"
|
|
9
|
+
pull_request:
|
|
10
|
+
branches:
|
|
11
|
+
- "**"
|
|
12
|
+
paths:
|
|
13
|
+
- "examples/simple-chatbot/client/android/**"
|
|
14
|
+
workflow_dispatch:
|
|
15
|
+
inputs:
|
|
16
|
+
sdk_git_ref:
|
|
17
|
+
type: string
|
|
18
|
+
description: "Which git ref of the app to build"
|
|
19
|
+
|
|
20
|
+
concurrency:
|
|
21
|
+
group: build-android-${{ github.event.pull_request.number || github.ref }}
|
|
22
|
+
cancel-in-progress: true
|
|
23
|
+
|
|
24
|
+
jobs:
|
|
25
|
+
sdk:
|
|
26
|
+
name: "Simple chatbot demo"
|
|
27
|
+
runs-on: ubuntu-latest
|
|
28
|
+
steps:
|
|
29
|
+
- name: Checkout repo
|
|
30
|
+
uses: actions/checkout@v4
|
|
31
|
+
with:
|
|
32
|
+
ref: ${{ github.event.inputs.sdk_git_ref || github.ref }}
|
|
33
|
+
|
|
34
|
+
- name: "Install Java"
|
|
35
|
+
uses: actions/setup-java@v4
|
|
36
|
+
with:
|
|
37
|
+
distribution: 'temurin'
|
|
38
|
+
java-version: '17'
|
|
39
|
+
|
|
40
|
+
- name: Build demo app
|
|
41
|
+
working-directory: examples/simple-chatbot/client/android
|
|
42
|
+
run: ./gradlew :simple-chatbot-client:assembleDebug
|
|
43
|
+
|
|
44
|
+
- name: Upload demo APK
|
|
45
|
+
uses: actions/upload-artifact@v4
|
|
46
|
+
with:
|
|
47
|
+
name: Simple Chatbot Android Client
|
|
48
|
+
path: examples/simple-chatbot/client/android/simple-chatbot-client/build/outputs/apk/debug/simple-chatbot-client-debug.apk
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
name: build
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- main
|
|
8
|
+
pull_request:
|
|
9
|
+
branches:
|
|
10
|
+
- "dv-stage"
|
|
11
|
+
paths-ignore:
|
|
12
|
+
- "docs/**"
|
|
13
|
+
|
|
14
|
+
concurrency:
|
|
15
|
+
group: build-${{ github.event.pull_request.number || github.ref }}
|
|
16
|
+
cancel-in-progress: true
|
|
17
|
+
|
|
18
|
+
jobs:
|
|
19
|
+
build:
|
|
20
|
+
name: "Build and Install"
|
|
21
|
+
runs-on: ubuntu-latest
|
|
22
|
+
steps:
|
|
23
|
+
- uses: actions/checkout@v4
|
|
24
|
+
- name: Set up Python
|
|
25
|
+
id: setup_python
|
|
26
|
+
uses: actions/setup-python@v4
|
|
27
|
+
with:
|
|
28
|
+
python-version: '3.10'
|
|
29
|
+
- name: Setup virtual environment
|
|
30
|
+
run: |
|
|
31
|
+
python -m venv .venv
|
|
32
|
+
- name: Install basic Python dependencies
|
|
33
|
+
run: |
|
|
34
|
+
source .venv/bin/activate
|
|
35
|
+
python -m pip install --upgrade pip
|
|
36
|
+
pip install -r dev-requirements.txt
|
|
37
|
+
- name: Build project
|
|
38
|
+
run: |
|
|
39
|
+
source .venv/bin/activate
|
|
40
|
+
python -m build
|
|
41
|
+
- name: Install project and other Python dependencies
|
|
42
|
+
run: |
|
|
43
|
+
source .venv/bin/activate
|
|
44
|
+
pip install --editable .
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
name: coverage
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- main
|
|
8
|
+
pull_request:
|
|
9
|
+
branches:
|
|
10
|
+
- "dv-stage"
|
|
11
|
+
paths-ignore:
|
|
12
|
+
- "docs/**"
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
coverage:
|
|
16
|
+
name: "Coverage"
|
|
17
|
+
runs-on: ubuntu-latest
|
|
18
|
+
steps:
|
|
19
|
+
- name: Checkout repo
|
|
20
|
+
uses: actions/checkout@v4
|
|
21
|
+
- name: Set up Python
|
|
22
|
+
id: setup_python
|
|
23
|
+
uses: actions/setup-python@v4
|
|
24
|
+
with:
|
|
25
|
+
python-version: "3.10"
|
|
26
|
+
- name: Cache virtual environment
|
|
27
|
+
uses: actions/cache@v3
|
|
28
|
+
with:
|
|
29
|
+
# We are hashing dev-requirements.txt and test-requirements.txt which
|
|
30
|
+
# contain all dependencies needed to run the tests.
|
|
31
|
+
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('dev-requirements.txt') }}-${{ hashFiles('test-requirements.txt') }}
|
|
32
|
+
path: .venv
|
|
33
|
+
- name: Install system packages
|
|
34
|
+
id: install_system_packages
|
|
35
|
+
run: |
|
|
36
|
+
sudo apt-get install -y portaudio19-dev
|
|
37
|
+
- name: Setup virtual environment
|
|
38
|
+
run: |
|
|
39
|
+
python -m venv .venv
|
|
40
|
+
- name: Install basic Python dependencies
|
|
41
|
+
run: |
|
|
42
|
+
source .venv/bin/activate
|
|
43
|
+
python -m pip install --upgrade pip
|
|
44
|
+
pip install -r dev-requirements.txt -r test-requirements.txt
|
|
45
|
+
- name: Run tests with coverage
|
|
46
|
+
run: |
|
|
47
|
+
source .venv/bin/activate
|
|
48
|
+
coverage run
|
|
49
|
+
coverage xml
|
|
50
|
+
- name: Upload coverage to Codecov
|
|
51
|
+
uses: codecov/codecov-action@v5
|
|
52
|
+
with:
|
|
53
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
54
|
+
slug: pipecat-ai/pipecat
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
name: format
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- main
|
|
8
|
+
pull_request:
|
|
9
|
+
branches:
|
|
10
|
+
- "dv-main"
|
|
11
|
+
paths-ignore:
|
|
12
|
+
- "docs/**"
|
|
13
|
+
|
|
14
|
+
concurrency:
|
|
15
|
+
group: build-format-${{ github.event.pull_request.number || github.ref }}
|
|
16
|
+
cancel-in-progress: true
|
|
17
|
+
|
|
18
|
+
jobs:
|
|
19
|
+
ruff-format:
|
|
20
|
+
name: "Formatting checker"
|
|
21
|
+
runs-on: ubuntu-latest
|
|
22
|
+
steps:
|
|
23
|
+
- name: Checkout repo
|
|
24
|
+
uses: actions/checkout@v4
|
|
25
|
+
- name: Set up Python
|
|
26
|
+
uses: actions/setup-python@v4
|
|
27
|
+
with:
|
|
28
|
+
python-version: "3.10"
|
|
29
|
+
- name: Setup virtual environment
|
|
30
|
+
run: |
|
|
31
|
+
python -m venv .venv
|
|
32
|
+
- name: Install development Python dependencies
|
|
33
|
+
run: |
|
|
34
|
+
source .venv/bin/activate
|
|
35
|
+
python -m pip install --upgrade pip
|
|
36
|
+
pip install -r dev-requirements.txt
|
|
37
|
+
- name: Ruff formatter
|
|
38
|
+
id: ruff-format
|
|
39
|
+
run: |
|
|
40
|
+
source .venv/bin/activate
|
|
41
|
+
ruff format --diff
|
|
42
|
+
- name: Ruff import linter
|
|
43
|
+
id: ruff-check
|
|
44
|
+
run: |
|
|
45
|
+
source .venv/bin/activate
|
|
46
|
+
ruff check --select I
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
name: Build and Deploy to Kubernetes
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- dv-stage # Trigger only on pushes to this specific branch.
|
|
7
|
+
|
|
8
|
+
env:
|
|
9
|
+
PROJECT_ID: desivocalprod01
|
|
10
|
+
REGION: asia-south1
|
|
11
|
+
REPOSITORY: desivocal-registry
|
|
12
|
+
IMAGE_NAME: dv-pipecat
|
|
13
|
+
# Determine cluster and secrets based on the target branch (dv-main for prod, others for stage)
|
|
14
|
+
CLUSTER: ${{ github.ref == 'refs/heads/dv-main' && 'desivocal-prod-cluster' || 'desivocal-staging-cluster' }}
|
|
15
|
+
CLUSTER_ZONE: ${{ github.ref == 'refs/heads/dv-main' && 'asia-south1' || 'asia-south1-a' }}
|
|
16
|
+
GITHUB_SHA: ${{ github.sha }}
|
|
17
|
+
# Assuming secrets are named like PROD_SECRETS_JSON / STAGE_SECRETS_JSON etc.
|
|
18
|
+
# SECRETS_JSON should contain a JSON object like {"VAR1": "value1", "VAR2": "value2"}
|
|
19
|
+
SECRETS_JSON: ${{ github.ref == 'refs/heads/dv-main' && secrets.PROD_SECRETS_JSON || secrets.STAGE_SECRETS_JSON }}
|
|
20
|
+
# CREDS_JSON should contain the raw content of the creds.json file
|
|
21
|
+
CREDS_JSON: ${{ github.ref == 'refs/heads/dv-main' && secrets.PROD_CREDS_JSON || secrets.STAGE_CREDS_JSON }}
|
|
22
|
+
# Helm release name
|
|
23
|
+
HELM_RELEASE_NAME: dv-pipecat
|
|
24
|
+
|
|
25
|
+
jobs:
|
|
26
|
+
build-and-deploy:
|
|
27
|
+
runs-on: ubuntu-latest
|
|
28
|
+
permissions:
|
|
29
|
+
contents: read
|
|
30
|
+
id-token: write # Required for Workload Identity Federation
|
|
31
|
+
|
|
32
|
+
steps:
|
|
33
|
+
- name: Checkout code
|
|
34
|
+
uses: actions/checkout@v4
|
|
35
|
+
|
|
36
|
+
- name: Authenticate to GCP using Workload Identity Federation
|
|
37
|
+
id: auth
|
|
38
|
+
uses: google-github-actions/auth@v2
|
|
39
|
+
with:
|
|
40
|
+
workload_identity_provider: projects/623676891410/locations/global/workloadIdentityPools/desivocal-staging-pool/providers/github # TODO: Update for production if needed
|
|
41
|
+
service_account: gke-githubactions-svc-stage@desivocalprod01.iam.gserviceaccount.com # TODO: Update for production if needed
|
|
42
|
+
|
|
43
|
+
- name: Configure gcloud
|
|
44
|
+
run: |
|
|
45
|
+
gcloud config set project $PROJECT_ID
|
|
46
|
+
gcloud auth configure-docker $REGION-docker.pkg.dev --quiet
|
|
47
|
+
|
|
48
|
+
- name: Build Docker image
|
|
49
|
+
run: |
|
|
50
|
+
cd examples/plivo-chatbot
|
|
51
|
+
docker build -t $REGION-docker.pkg.dev/$PROJECT_ID/$REPOSITORY/$IMAGE_NAME:$GITHUB_SHA -f remote-Dockerfile .
|
|
52
|
+
|
|
53
|
+
- name: Push Docker image to Artifact Registry
|
|
54
|
+
run: |
|
|
55
|
+
docker push $REGION-docker.pkg.dev/$PROJECT_ID/$REPOSITORY/$IMAGE_NAME:$GITHUB_SHA
|
|
56
|
+
|
|
57
|
+
- name: Install Helm
|
|
58
|
+
uses: azure/setup-helm@v4
|
|
59
|
+
with:
|
|
60
|
+
version: v3.13.3 # Specify Helm version if needed
|
|
61
|
+
|
|
62
|
+
- name: Connect to GKE
|
|
63
|
+
uses: google-github-actions/get-gke-credentials@v2
|
|
64
|
+
with:
|
|
65
|
+
cluster_name: ${{ env.CLUSTER }}
|
|
66
|
+
location: ${{ env.CLUSTER_ZONE }}
|
|
67
|
+
|
|
68
|
+
- name: Install jq (for parsing JSON secrets)
|
|
69
|
+
run: sudo apt-get update && sudo apt-get install -y jq
|
|
70
|
+
|
|
71
|
+
- name: Create/Update GCP Credentials Secret
|
|
72
|
+
run: |
|
|
73
|
+
echo "Creating/Updating Kubernetes secret for GCP credentials..."
|
|
74
|
+
# Create secret with creds.json key from CREDS_JSON content
|
|
75
|
+
echo "$CREDS_JSON" | kubectl create secret generic ${{ env.HELM_RELEASE_NAME }}-gcp-creds --from-file=creds.json=/dev/stdin --dry-run=client -o yaml | kubectl apply -f - --overwrite
|
|
76
|
+
env:
|
|
77
|
+
CREDS_JSON: ${{ env.CREDS_JSON }}
|
|
78
|
+
|
|
79
|
+
- name: Create/Update Application Secrets
|
|
80
|
+
run: |
|
|
81
|
+
echo "Creating/Updating Kubernetes secret for application environment variables..."
|
|
82
|
+
# Build the --from-literal arguments dynamically from the JSON object stored in SECRETS_JSON
|
|
83
|
+
# This creates one key in the secret for each key in the JSON, matching the file structure expected by read_secret
|
|
84
|
+
LITERAL_ARGS=$(echo "$SECRETS_JSON" | jq -r 'to_entries | .[] | "--from-literal=\(.key)=\(.value)"' | tr '\n' ' ')
|
|
85
|
+
if [ -z "$LITERAL_ARGS" ]; then
|
|
86
|
+
echo "SECRETS_JSON is empty or not valid JSON. Skipping secret creation."
|
|
87
|
+
# Handle error or create empty secret if absolutely required by envFrom (though optional should be fine)
|
|
88
|
+
# kubectl create secret generic ${{ env.HELM_RELEASE_NAME }}-app-secrets --dry-run=client -o yaml | kubectl apply -f - --overwrite
|
|
89
|
+
else
|
|
90
|
+
kubectl create secret generic ${{ env.HELM_RELEASE_NAME }}-app-secrets $LITERAL_ARGS --dry-run=client -o yaml | kubectl apply -f - --overwrite
|
|
91
|
+
fi
|
|
92
|
+
env:
|
|
93
|
+
SECRETS_JSON: ${{ env.SECRETS_JSON }}
|
|
94
|
+
|
|
95
|
+
- name: Deploy to GKE using Helm
|
|
96
|
+
run: |
|
|
97
|
+
if [ "${{ github.ref }}" == "refs/heads/dv-main" ]; then
|
|
98
|
+
VALUES_FILE="values-prod.yaml"
|
|
99
|
+
echo "Using production values: $VALUES_FILE"
|
|
100
|
+
else
|
|
101
|
+
VALUES_FILE="values-stage.yaml"
|
|
102
|
+
echo "Using staging values: $VALUES_FILE"
|
|
103
|
+
fi
|
|
104
|
+
|
|
105
|
+
helm upgrade --install ${{ env.HELM_RELEASE_NAME }} ./k8s/dv-pipecat \
|
|
106
|
+
--set image.repository=$REGION-docker.pkg.dev/$PROJECT_ID/$REPOSITORY/$IMAGE_NAME \
|
|
107
|
+
--set image.tag=$GITHUB_SHA \
|
|
108
|
+
--namespace default \
|
|
109
|
+
-f ./k8s/dv-pipecat/$VALUES_FILE
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
name: publish
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
inputs:
|
|
6
|
+
gitref:
|
|
7
|
+
type: string
|
|
8
|
+
description: "what git ref to build"
|
|
9
|
+
required: true
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
build:
|
|
13
|
+
name: "Build and upload wheels"
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
steps:
|
|
16
|
+
- name: Checkout repo
|
|
17
|
+
uses: actions/checkout@v4
|
|
18
|
+
with:
|
|
19
|
+
ref: ${{ github.event.inputs.gitref }}
|
|
20
|
+
- name: Set up Python
|
|
21
|
+
id: setup_python
|
|
22
|
+
uses: actions/setup-python@v4
|
|
23
|
+
with:
|
|
24
|
+
python-version: '3.10'
|
|
25
|
+
- name: Setup virtual environment
|
|
26
|
+
run: |
|
|
27
|
+
python -m venv .venv
|
|
28
|
+
- name: Install basic Python dependencies
|
|
29
|
+
run: |
|
|
30
|
+
source .venv/bin/activate
|
|
31
|
+
python -m pip install --upgrade pip
|
|
32
|
+
pip install -r dev-requirements.txt
|
|
33
|
+
- name: Build project
|
|
34
|
+
run: |
|
|
35
|
+
source .venv/bin/activate
|
|
36
|
+
python -m build
|
|
37
|
+
- name: Upload wheels
|
|
38
|
+
uses: actions/upload-artifact@v4
|
|
39
|
+
with:
|
|
40
|
+
name: wheels
|
|
41
|
+
path: ./dist
|
|
42
|
+
|
|
43
|
+
publish-to-pypi:
|
|
44
|
+
name: "Publish to PyPI"
|
|
45
|
+
runs-on: ubuntu-latest
|
|
46
|
+
needs: [ build ]
|
|
47
|
+
environment:
|
|
48
|
+
name: pypi
|
|
49
|
+
url: https://pypi.org/p/pipecat-ai
|
|
50
|
+
permissions:
|
|
51
|
+
id-token: write
|
|
52
|
+
steps:
|
|
53
|
+
- name: Download wheels
|
|
54
|
+
uses: actions/download-artifact@v4
|
|
55
|
+
with:
|
|
56
|
+
name: wheels
|
|
57
|
+
path: ./dist
|
|
58
|
+
- name: Publish to PyPI
|
|
59
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
60
|
+
with:
|
|
61
|
+
verbose: true
|
|
62
|
+
print-hash: true
|
|
63
|
+
|
|
64
|
+
publish-to-test-pypi:
|
|
65
|
+
name: "Publish to Test PyPI"
|
|
66
|
+
runs-on: ubuntu-latest
|
|
67
|
+
needs: [ build ]
|
|
68
|
+
environment:
|
|
69
|
+
name: testpypi
|
|
70
|
+
url: https://pypi.org/p/pipecat-ai
|
|
71
|
+
permissions:
|
|
72
|
+
id-token: write
|
|
73
|
+
steps:
|
|
74
|
+
- name: Download wheels
|
|
75
|
+
uses: actions/download-artifact@v4
|
|
76
|
+
with:
|
|
77
|
+
name: wheels
|
|
78
|
+
path: ./dist
|
|
79
|
+
- name: Publish to PyPI
|
|
80
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
81
|
+
with:
|
|
82
|
+
verbose: true
|
|
83
|
+
print-hash: true
|
|
84
|
+
repository-url: https://test.pypi.org/legacy/
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
name: publish-test
|
|
2
|
+
|
|
3
|
+
on: workflow_dispatch
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
build:
|
|
7
|
+
name: "Build and upload wheels"
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
steps:
|
|
10
|
+
- name: Checkout repo
|
|
11
|
+
uses: actions/checkout@v4
|
|
12
|
+
with:
|
|
13
|
+
fetch-tags: true
|
|
14
|
+
fetch-depth: 100
|
|
15
|
+
- name: Set up Python
|
|
16
|
+
id: setup_python
|
|
17
|
+
uses: actions/setup-python@v4
|
|
18
|
+
with:
|
|
19
|
+
python-version: '3.10'
|
|
20
|
+
- name: Setup virtual environment
|
|
21
|
+
run: |
|
|
22
|
+
python -m venv .venv
|
|
23
|
+
- name: Install basic Python dependencies
|
|
24
|
+
run: |
|
|
25
|
+
source .venv/bin/activate
|
|
26
|
+
python -m pip install --upgrade pip
|
|
27
|
+
pip install -r dev-requirements.txt
|
|
28
|
+
- name: Build project
|
|
29
|
+
run: |
|
|
30
|
+
source .venv/bin/activate
|
|
31
|
+
python -m build
|
|
32
|
+
- name: Upload wheels
|
|
33
|
+
uses: actions/upload-artifact@v4
|
|
34
|
+
with:
|
|
35
|
+
name: wheels
|
|
36
|
+
path: ./dist
|
|
37
|
+
|
|
38
|
+
publish-to-test-pypi:
|
|
39
|
+
name: "Publish to Test PyPI"
|
|
40
|
+
runs-on: ubuntu-latest
|
|
41
|
+
needs: [ build ]
|
|
42
|
+
environment:
|
|
43
|
+
name: testpypi
|
|
44
|
+
url: https://pypi.org/p/pipecat-ai
|
|
45
|
+
permissions:
|
|
46
|
+
id-token: write
|
|
47
|
+
steps:
|
|
48
|
+
- name: Download wheels
|
|
49
|
+
uses: actions/download-artifact@v4
|
|
50
|
+
with:
|
|
51
|
+
name: wheels
|
|
52
|
+
path: ./dist
|
|
53
|
+
- name: Publish to PyPI
|
|
54
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
55
|
+
with:
|
|
56
|
+
verbose: true
|
|
57
|
+
print-hash: true
|
|
58
|
+
repository-url: https://test.pypi.org/legacy/
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
name: tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- main
|
|
8
|
+
pull_request:
|
|
9
|
+
branches:
|
|
10
|
+
- "dv-stage"
|
|
11
|
+
paths-ignore:
|
|
12
|
+
- "docs/**"
|
|
13
|
+
|
|
14
|
+
concurrency:
|
|
15
|
+
group: build-test-${{ github.event.pull_request.number || github.ref }}
|
|
16
|
+
cancel-in-progress: true
|
|
17
|
+
|
|
18
|
+
jobs:
|
|
19
|
+
test:
|
|
20
|
+
name: "Unit and Integration Tests"
|
|
21
|
+
runs-on: ubuntu-latest
|
|
22
|
+
steps:
|
|
23
|
+
- name: Checkout repo
|
|
24
|
+
uses: actions/checkout@v4
|
|
25
|
+
- name: Set up Python
|
|
26
|
+
id: setup_python
|
|
27
|
+
uses: actions/setup-python@v4
|
|
28
|
+
with:
|
|
29
|
+
python-version: "3.10"
|
|
30
|
+
- name: Cache virtual environment
|
|
31
|
+
uses: actions/cache@v3
|
|
32
|
+
with:
|
|
33
|
+
# We are hashing dev-requirements.txt and test-requirements.txt which
|
|
34
|
+
# contain all dependencies needed to run the tests.
|
|
35
|
+
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('dev-requirements.txt') }}-${{ hashFiles('test-requirements.txt') }}
|
|
36
|
+
path: .venv
|
|
37
|
+
- name: Install system packages
|
|
38
|
+
id: install_system_packages
|
|
39
|
+
run: |
|
|
40
|
+
sudo apt-get install -y portaudio19-dev
|
|
41
|
+
- name: Setup virtual environment
|
|
42
|
+
run: |
|
|
43
|
+
python -m venv .venv
|
|
44
|
+
- name: Install basic Python dependencies
|
|
45
|
+
run: |
|
|
46
|
+
source .venv/bin/activate
|
|
47
|
+
python -m pip install --upgrade pip
|
|
48
|
+
pip install -r dev-requirements.txt -r test-requirements.txt
|
|
49
|
+
- name: Test with pytest
|
|
50
|
+
run: |
|
|
51
|
+
source .venv/bin/activate
|
|
52
|
+
pytest
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
.vscode
|
|
2
|
+
env/
|
|
3
|
+
__pycache__/
|
|
4
|
+
*~
|
|
5
|
+
venv
|
|
6
|
+
.venv
|
|
7
|
+
/.idea
|
|
8
|
+
#*#
|
|
9
|
+
data/
|
|
10
|
+
# Distribution / packaging
|
|
11
|
+
.Python
|
|
12
|
+
build/
|
|
13
|
+
develop-eggs/
|
|
14
|
+
dist/
|
|
15
|
+
downloads/
|
|
16
|
+
eggs/
|
|
17
|
+
.eggs/
|
|
18
|
+
lib/
|
|
19
|
+
lib64/
|
|
20
|
+
parts/
|
|
21
|
+
sdist/
|
|
22
|
+
var/
|
|
23
|
+
wheels/
|
|
24
|
+
share/python-wheels/
|
|
25
|
+
*.egg-info/
|
|
26
|
+
.installed.cfg
|
|
27
|
+
*.egg
|
|
28
|
+
MANIFEST
|
|
29
|
+
.DS_Store
|
|
30
|
+
.env
|
|
31
|
+
fly.toml
|
|
32
|
+
|
|
33
|
+
# Example files
|
|
34
|
+
pipecat/examples/twilio-chatbot/templates/streams.xml
|
|
35
|
+
pipecat/examples/bot-ready-signalling/client/react-native/node_modules/
|
|
36
|
+
pipecat/examples/bot-ready-signalling/client/react-native/.expo/
|
|
37
|
+
pipecat/examples/bot-ready-signalling/client/react-native/dist/
|
|
38
|
+
pipecat/examples/bot-ready-signalling/client/react-native/npm-debug.*
|
|
39
|
+
pipecat/examples/bot-ready-signalling/client/react-native/*.jks
|
|
40
|
+
pipecat/examples/bot-ready-signalling/client/react-native/*.p8
|
|
41
|
+
pipecat/examples/bot-ready-signalling/client/react-native/*.p12
|
|
42
|
+
pipecat/examples/bot-ready-signalling/client/react-native/*.key
|
|
43
|
+
pipecat/examples/bot-ready-signalling/client/react-native/*.mobileprovision
|
|
44
|
+
pipecat/examples/bot-ready-signalling/client/react-native/*.orig.*
|
|
45
|
+
pipecat/examples/bot-ready-signalling/client/react-native/web-build/
|
|
46
|
+
|
|
47
|
+
# macOS
|
|
48
|
+
.DS_Store
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
# Documentation
|
|
52
|
+
docs/api/_build/
|
|
53
|
+
docs/api/api
|
|
54
|
+
memory-bank/
|
|
55
|
+
|
|
56
|
+
# Logs
|
|
57
|
+
logs/*
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
|
|
3
|
+
build:
|
|
4
|
+
os: ubuntu-22.04
|
|
5
|
+
tools:
|
|
6
|
+
python: '3.12'
|
|
7
|
+
apt_packages:
|
|
8
|
+
- portaudio19-dev
|
|
9
|
+
- python3-dev
|
|
10
|
+
- libasound2-dev
|
|
11
|
+
jobs:
|
|
12
|
+
pre_build:
|
|
13
|
+
- python -m pip install --upgrade pip
|
|
14
|
+
- pip install wheel setuptools
|
|
15
|
+
post_build:
|
|
16
|
+
- echo "Build completed"
|
|
17
|
+
|
|
18
|
+
sphinx:
|
|
19
|
+
configuration: docs/api/conf.py
|
|
20
|
+
fail_on_warning: false
|
|
21
|
+
|
|
22
|
+
python:
|
|
23
|
+
install:
|
|
24
|
+
- requirements: docs/api/requirements.txt
|
|
25
|
+
- method: pip
|
|
26
|
+
path: .
|
|
27
|
+
|
|
28
|
+
search:
|
|
29
|
+
ranking:
|
|
30
|
+
api/*: 5
|
|
31
|
+
getting-started/*: 4
|
|
32
|
+
guides/*: 3
|
|
33
|
+
|
|
34
|
+
submodules:
|
|
35
|
+
include: all
|
|
36
|
+
recursive: true
|