bedrock-agentcore-starter-toolkit 0.1.20__py3-none-any.whl → 0.1.21__py3-none-any.whl

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.

Potentially problematic release.


This version of bedrock-agentcore-starter-toolkit might be problematic. Click here for more details.

@@ -45,7 +45,7 @@ class Runtime:
45
45
  auto_create_execution_role: bool = False,
46
46
  authorizer_configuration: Optional[Dict[str, Any]] = None,
47
47
  region: Optional[str] = None,
48
- protocol: Optional[Literal["HTTP", "MCP"]] = None,
48
+ protocol: Optional[Literal["HTTP", "MCP", "A2A"]] = None,
49
49
  disable_otel: bool = False,
50
50
  non_interactive: bool = True,
51
51
  ) -> ConfigureResult:
@@ -65,15 +65,15 @@ class Runtime:
65
65
  auto_create_execution_role: Whether to auto-create execution role (makes execution_role optional)
66
66
  authorizer_configuration: JWT authorizer configuration dictionary
67
67
  region: AWS region for deployment
68
- protocol: agent server protocol, must be either HTTP or MCP
68
+ protocol: agent server protocol, must be either HTTP or MCP or A2A
69
69
  disable_otel: Whether to disable OpenTelemetry observability (default: False)
70
70
  non_interactive: Skip interactive prompts and use defaults (default: True)
71
71
 
72
72
  Returns:
73
73
  ConfigureResult with configuration details
74
74
  """
75
- if protocol and protocol.upper() not in ["HTTP", "MCP"]:
76
- raise ValueError("protocol must be either HTTP or MCP")
75
+ if protocol and protocol.upper() not in ["HTTP", "MCP", "A2A"]:
76
+ raise ValueError("protocol must be either HTTP or MCP or A2A")
77
77
 
78
78
  # Parse entrypoint to get agent name
79
79
  file_path, file_name = parse_entrypoint(entrypoint)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bedrock-agentcore-starter-toolkit
3
- Version: 0.1.20
3
+ Version: 0.1.21
4
4
  Summary: A starter toolkit for using Bedrock AgentCore
5
5
  Project-URL: Homepage, https://github.com/aws/bedrock-agentcore-starter-toolkit
6
6
  Project-URL: Bug Tracker, https://github.com/aws/bedrock-agentcore-starter-toolkit/issues
@@ -13,7 +13,7 @@ bedrock_agentcore_starter_toolkit/cli/runtime/commands.py,sha256=oFviB4Fx2Ff43IH
13
13
  bedrock_agentcore_starter_toolkit/cli/runtime/configuration_manager.py,sha256=72UVvnzD3aqaOBNhIMMHjNN5-mgR2oUnnWyA33oFoLM,14602
14
14
  bedrock_agentcore_starter_toolkit/notebook/__init__.py,sha256=wH1ZzIVKsKT_P0qX2kIIoyVxeHj8K40odfR1YI3McHw,129
15
15
  bedrock_agentcore_starter_toolkit/notebook/runtime/__init__.py,sha256=DoGfB_uGFLANJVE9rSZtTH3ymw76WBWmD9vORvBIdXs,66
16
- bedrock_agentcore_starter_toolkit/notebook/runtime/bedrock_agentcore.py,sha256=jUpCv7MEnnUvsih37MVdQqYLJ_z2fIKNQuxgO1w7zV4,15714
16
+ bedrock_agentcore_starter_toolkit/notebook/runtime/bedrock_agentcore.py,sha256=pGIO6lOdOR71BX6uTW6xhOKAuYSx6jxtvIggy8NmHHI,15742
17
17
  bedrock_agentcore_starter_toolkit/operations/__init__.py,sha256=L7sCNjfZviiVVoh2f3NEs2sbjNqFkmIRI3ZPYMMWMz0,51
18
18
  bedrock_agentcore_starter_toolkit/operations/gateway/__init__.py,sha256=5Qo1GeN-DghNp9g0coFUs7WpUJDboJoidOVs-5Co7fo,233
19
19
  bedrock_agentcore_starter_toolkit/operations/gateway/client.py,sha256=9KQzRAEGWbBDVVacdB1GqN_HJ06vwTBs6tLwfxYROoY,26498
@@ -72,9 +72,9 @@ bedrock_agentcore_starter_toolkit/utils/runtime/templates/Dockerfile.j2,sha256=3
72
72
  bedrock_agentcore_starter_toolkit/utils/runtime/templates/dockerignore.template,sha256=b_70sBi0MwkTuA9TqxPqFcWK7TcmpaXBJ6M2Ipox65Q,691
73
73
  bedrock_agentcore_starter_toolkit/utils/runtime/templates/execution_role_policy.json.j2,sha256=hsYLCgaWMfXuwva90yb1DVEO_HUkIjHHNcPKb60E18k,6180
74
74
  bedrock_agentcore_starter_toolkit/utils/runtime/templates/execution_role_trust_policy.json.j2,sha256=PPJF6Ofq70W5DUE0NlbmnZjw5RkgepPgkskxEgEG28o,473
75
- bedrock_agentcore_starter_toolkit-0.1.20.dist-info/METADATA,sha256=e09RnkNZr3nfiJmQimbum5TRQls1Zh1V3mkOazJwN7A,9999
76
- bedrock_agentcore_starter_toolkit-0.1.20.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
77
- bedrock_agentcore_starter_toolkit-0.1.20.dist-info/entry_points.txt,sha256=Tf94DkUf2Tp8P7p8MEXLxre7A7Pp_XNukteiz0wHnk8,77
78
- bedrock_agentcore_starter_toolkit-0.1.20.dist-info/licenses/LICENSE.txt,sha256=nNPOMinitYdtfbhdQgsPgz1UowBznU6QVN3Xs0pSTKU,10768
79
- bedrock_agentcore_starter_toolkit-0.1.20.dist-info/licenses/NOTICE.txt,sha256=rkBsg8DbKqfIoQbveqX9foR4uJPUVAokbkr02pRPilE,8674
80
- bedrock_agentcore_starter_toolkit-0.1.20.dist-info/RECORD,,
75
+ bedrock_agentcore_starter_toolkit-0.1.21.dist-info/METADATA,sha256=Bn1VGJrPP0p5HvynOBD1-fktM-915TBCw_brI8AKa0c,9999
76
+ bedrock_agentcore_starter_toolkit-0.1.21.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
77
+ bedrock_agentcore_starter_toolkit-0.1.21.dist-info/entry_points.txt,sha256=Tf94DkUf2Tp8P7p8MEXLxre7A7Pp_XNukteiz0wHnk8,77
78
+ bedrock_agentcore_starter_toolkit-0.1.21.dist-info/licenses/LICENSE.txt,sha256=nNPOMinitYdtfbhdQgsPgz1UowBznU6QVN3Xs0pSTKU,10768
79
+ bedrock_agentcore_starter_toolkit-0.1.21.dist-info/licenses/NOTICE.txt,sha256=rkBsg8DbKqfIoQbveqX9foR4uJPUVAokbkr02pRPilE,8674
80
+ bedrock_agentcore_starter_toolkit-0.1.21.dist-info/RECORD,,