From 75765a876b3c2680c5fda696ccfb2c77c28ecf58 Mon Sep 17 00:00:00 2001 From: Filipi Fuchter Date: Mon, 1 Dec 2025 07:32:47 -0300 Subject: [PATCH] Disabling memory by default since it is not needed by this example --- examples/aws-agentcore/agents/pipecat/scripts/configure.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/aws-agentcore/agents/pipecat/scripts/configure.sh b/examples/aws-agentcore/agents/pipecat/scripts/configure.sh index 8b95d5ec3..c97724716 100755 --- a/examples/aws-agentcore/agents/pipecat/scripts/configure.sh +++ b/examples/aws-agentcore/agents/pipecat/scripts/configure.sh @@ -10,8 +10,9 @@ INSERT_LINE="RUN apt update && apt install -y libgl1 libglib2.0-0 && apt clean" ############################################### # STEP 1 — Configure agentcore # Already configuring to use Docker as it is required by Pipecat +# Disabling memory by default since it is not needed by this example ############################################### -agentcore configure -e pipecat-agent.py --deployment-type container --container-runtime docker +agentcore configure -e pipecat-agent.py --deployment-type container --container-runtime docker --disable-memory ############################################### # STEP 2 — Wait until Dockerfile exists