From d39e46a9e1c5b8c3d8d9c2396a2af54714f00e53 Mon Sep 17 00:00:00 2001 From: Chad Bailey Date: Tue, 8 Apr 2025 21:10:49 +0000 Subject: [PATCH] cleanup --- examples/multi-transport-chatbot/README.md | 3 ++- examples/multi-transport-chatbot/build.sh | 2 +- examples/multi-transport-chatbot/pcc-deploy.toml | 2 +- examples/multi-transport-chatbot/requirements.txt | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/multi-transport-chatbot/README.md b/examples/multi-transport-chatbot/README.md index 56d1049aa..8a4c41591 100644 --- a/examples/multi-transport-chatbot/README.md +++ b/examples/multi-transport-chatbot/README.md @@ -45,9 +45,10 @@ This uses the `local_daily()` function in `bot.py`, which creates a `DailyTransp ### Step 3: Deploy to Pipecat Cloud -This repo already includes a Dockerfile you can use to build an image that works with Pipecat Cloud. You can do it in two steps: +This repo already includes a Dockerfile you can use to build an image that works with Pipecat Cloud. You can do it in a few steps. First, edit `build.sh` and `pcc-deploy.toml` and replace `your-dockerhub-username` with, well, your DockerHub username. Then: ```bash +# ./build.sh pcc deploy diff --git a/examples/multi-transport-chatbot/build.sh b/examples/multi-transport-chatbot/build.sh index 01e8ea100..9d96e8373 100755 --- a/examples/multi-transport-chatbot/build.sh +++ b/examples/multi-transport-chatbot/build.sh @@ -2,7 +2,7 @@ set -e VERSION="0.1" -DOCKER_USERNAME="chadbailey59" +DOCKER_USERNAME="your-dockerhub-username" AGENT_NAME="multi-transport-chatbot" # Build the Docker image with the correct context diff --git a/examples/multi-transport-chatbot/pcc-deploy.toml b/examples/multi-transport-chatbot/pcc-deploy.toml index 1850c58c5..12e97997c 100644 --- a/examples/multi-transport-chatbot/pcc-deploy.toml +++ b/examples/multi-transport-chatbot/pcc-deploy.toml @@ -1,5 +1,5 @@ agent_name = "multi-transport-chatbot" -image = "chadbailey59/multi-transport-chatbot:0.1" +image = "your-dockerhub-username/multi-transport-chatbot:0.1" secret_set = "pcc-transport-chatbot-secrets" [scaling] diff --git a/examples/multi-transport-chatbot/requirements.txt b/examples/multi-transport-chatbot/requirements.txt index 487eddf59..923df7e65 100644 --- a/examples/multi-transport-chatbot/requirements.txt +++ b/examples/multi-transport-chatbot/requirements.txt @@ -1,5 +1,5 @@ python-dotenv fastapi[all] uvicorn -pipecat-ai[daily,cartesia,openai,silero,gladia,webrtc] +pipecat-ai[cartesia,daily,gladia,openai,silero,webrtc] pipecatcloud \ No newline at end of file