Skip to content

Commit 4d32f3a

Browse files
author
Roxanne Farhad
committed
testing the fix
1 parent bbefa53 commit 4d32f3a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build-and-push-tutorial-agent.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,9 @@ jobs:
198198
BUILD_ARGS="--manifest ${{ matrix.agent_path }}/manifest.yaml --registry ${REGISTRY} --tag ${VERSION_TAG} --platforms linux/amd64 --repository-name ${REPOSITORY_NAME}"
199199
200200
if [ "$SHOULD_PUSH" = "true" ]; then
201-
agentex agents build $BUILD_ARGS --push
201+
agentex agents build "$BUILD_ARGS" --push
202202
echo "✅ Successfully built and pushed: ${REGISTRY}/${REPOSITORY_NAME}:${VERSION_TAG}"
203203
else
204-
agentex agents build $BUILD_ARGS
204+
agentex agents build "$BUILD_ARGS"
205205
echo "✅ Build validation successful for: ${{ matrix.agent_path }}"
206206
fi

examples/tutorials/00_sync/000_hello_acp/project/acp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ async def handle_message_send(
2121
) -> Union[TaskMessageContent, AsyncGenerator[TaskMessageUpdate, None]]:
2222
"""Default message handler with streaming support"""
2323
# Extract content safely from the message
24-
logger.info("msg", params)
24+
logger.info("msg 2", params)
2525
message_text = ""
2626
if hasattr(params.content, "content"):
2727
content_val = getattr(params.content, "content", "")

0 commit comments

Comments
 (0)