Skip to content

Commit 13fc726

Browse files
committed
fixes with latest changes in dependencies
1 parent 2735a49 commit 13fc726

4 files changed

Lines changed: 8 additions & 6 deletions

File tree

sample_apps/python/multiagent_observability/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ RUN apt-get update && \
66
WORKDIR /app
77
COPY requirements.txt .
88
RUN pip install --no-cache-dir -r requirements.txt && \
9-
pip install awslabs.aws-api-mcp-server==0.1.4
9+
pip install awslabs.aws-api-mcp-server
1010
COPY . .
1111
EXPOSE 9000

sample_apps/python/multiagent_observability/maestro_agent.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import sys
1313
import time
1414
from typing import List, Optional
15+
import httpx
1516

1617
from strands import Agent
1718
from strands.telemetry import StrandsTelemetry
@@ -107,8 +108,8 @@ def parse_arguments() -> argparse.Namespace:
107108
"--agent-urls",
108109
nargs="+",
109110
default=[
110-
"http://aws-agent:9001",
111-
"http://cfn-agent:9002",
111+
"http://host.docker.internal:9001",
112+
"http://host.docker.internal:9002",
112113
],
113114
help="List of known agent URLs"
114115
)
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
uv==0.8.3
2-
strands-agents[ a2a, otel ]==1.1.0
3-
strands-agents-tools==0.2.2
1+
uv
2+
strands-agents[ a2a, otel ]
3+
strands-agents-tools

sample_apps/python/multiagent_observability/strands_mcp_agent.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
)
7575
a2a_server = A2AServer(
7676
agent=agent,
77+
host="0.0.0.0",
7778
port=agent_port,
7879
http_url=http_url
7980
)

0 commit comments

Comments
 (0)