bedrock-agentcore-starter-toolkit 0.1.26__py3-none-any.whl → 0.1.27__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.
- bedrock_agentcore_starter_toolkit/cli/cli.py +9 -1
- bedrock_agentcore_starter_toolkit/cli/runtime/commands.py +250 -7
- bedrock_agentcore_starter_toolkit/cli/runtime/configuration_manager.py +31 -7
- bedrock_agentcore_starter_toolkit/notebook/runtime/bedrock_agentcore.py +240 -2
- bedrock_agentcore_starter_toolkit/operations/memory/manager.py +20 -33
- bedrock_agentcore_starter_toolkit/operations/memory/models/strategies/base.py +2 -0
- bedrock_agentcore_starter_toolkit/operations/memory/models/strategies/self_managed.py +107 -0
- bedrock_agentcore_starter_toolkit/operations/runtime/__init__.py +4 -0
- bedrock_agentcore_starter_toolkit/operations/runtime/configure.py +120 -5
- bedrock_agentcore_starter_toolkit/operations/runtime/invoke.py +0 -53
- bedrock_agentcore_starter_toolkit/operations/runtime/launch.py +213 -16
- bedrock_agentcore_starter_toolkit/operations/runtime/models.py +19 -0
- bedrock_agentcore_starter_toolkit/operations/runtime/status.py +30 -0
- bedrock_agentcore_starter_toolkit/operations/runtime/stop_session.py +123 -0
- bedrock_agentcore_starter_toolkit/operations/runtime/vpc_validation.py +196 -0
- bedrock_agentcore_starter_toolkit/services/runtime.py +43 -1
- bedrock_agentcore_starter_toolkit/utils/runtime/schema.py +44 -1
- {bedrock_agentcore_starter_toolkit-0.1.26.dist-info → bedrock_agentcore_starter_toolkit-0.1.27.dist-info}/METADATA +8 -8
- {bedrock_agentcore_starter_toolkit-0.1.26.dist-info → bedrock_agentcore_starter_toolkit-0.1.27.dist-info}/RECORD +23 -20
- {bedrock_agentcore_starter_toolkit-0.1.26.dist-info → bedrock_agentcore_starter_toolkit-0.1.27.dist-info}/WHEEL +0 -0
- {bedrock_agentcore_starter_toolkit-0.1.26.dist-info → bedrock_agentcore_starter_toolkit-0.1.27.dist-info}/entry_points.txt +0 -0
- {bedrock_agentcore_starter_toolkit-0.1.26.dist-info → bedrock_agentcore_starter_toolkit-0.1.27.dist-info}/licenses/LICENSE.txt +0 -0
- {bedrock_agentcore_starter_toolkit-0.1.26.dist-info → bedrock_agentcore_starter_toolkit-0.1.27.dist-info}/licenses/NOTICE.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
bedrock_agentcore_starter_toolkit/__init__.py,sha256=tN3-JWKvxk4ZSJQJIHQ4mMsDtt8J_cDCz-drcGU9USA,120
|
|
2
2
|
bedrock_agentcore_starter_toolkit/cli/__init__.py,sha256=WuIWfHtJKD9gQA-mE49bq8OHGb0Ugt8upRGaOp6-H90,62
|
|
3
|
-
bedrock_agentcore_starter_toolkit/cli/cli.py,sha256=
|
|
3
|
+
bedrock_agentcore_starter_toolkit/cli/cli.py,sha256=c_I3a5nCJicaWZM1EO39JU7iTKM11zwlyNNtv8wsmhg,1149
|
|
4
4
|
bedrock_agentcore_starter_toolkit/cli/common.py,sha256=kwcoGhcDGLGJSxC7SxAersG7PBBg3oxldmJ6wqbt8Oc,1295
|
|
5
5
|
bedrock_agentcore_starter_toolkit/cli/gateway/__init__.py,sha256=8IZ0kSe6Kz5s2j-SBsoc6qy04MbK85RMTQwZCiR2wmo,68
|
|
6
6
|
bedrock_agentcore_starter_toolkit/cli/gateway/commands.py,sha256=3DuXCvqXlmHU2cmjGzDruyc2Fkrpgoi158myj0vc3nA,3265
|
|
@@ -9,11 +9,11 @@ bedrock_agentcore_starter_toolkit/cli/import_agent/__init__.py,sha256=tyM3dXM3Tc
|
|
|
9
9
|
bedrock_agentcore_starter_toolkit/cli/import_agent/agent_info.py,sha256=CcPXbKNnI9fc7NyFmZBjB3PkB0wAz2Q_kBGoUVcnngA,9736
|
|
10
10
|
bedrock_agentcore_starter_toolkit/cli/import_agent/commands.py,sha256=vpA66fGwKf6cxBelT3Yb_Af5Ow3AMquGLIDe-tBLjmc,22419
|
|
11
11
|
bedrock_agentcore_starter_toolkit/cli/runtime/__init__.py,sha256=0zKPPoYThoDIr3DZhIQJavq5nVTKRsgcE1s9--wx118,60
|
|
12
|
-
bedrock_agentcore_starter_toolkit/cli/runtime/commands.py,sha256=
|
|
13
|
-
bedrock_agentcore_starter_toolkit/cli/runtime/configuration_manager.py,sha256=
|
|
12
|
+
bedrock_agentcore_starter_toolkit/cli/runtime/commands.py,sha256=1ZQmPi30L-n2IlqwIiIHoARWmsR1ntcNYpJ4f3VMZRo,66966
|
|
13
|
+
bedrock_agentcore_starter_toolkit/cli/runtime/configuration_manager.py,sha256=I8Ptl7HIKLsczVMBPonaAYXnOOqm1-vi3FkOdVR6aCE,17003
|
|
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=
|
|
16
|
+
bedrock_agentcore_starter_toolkit/notebook/runtime/bedrock_agentcore.py,sha256=SZUaoKGpHW5RsmivB_qUf5XqDNCxSpvq3xOyiHeHnqU,27319
|
|
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
|
|
@@ -26,7 +26,7 @@ bedrock_agentcore_starter_toolkit/operations/identity/oauth2_callback_server.py,
|
|
|
26
26
|
bedrock_agentcore_starter_toolkit/operations/memory/README.md,sha256=VHmdCoZImRVsiDvCnKbnt4btO5fOkfeKmoludgSbKwM,31139
|
|
27
27
|
bedrock_agentcore_starter_toolkit/operations/memory/__init__.py,sha256=PAj25QAlnlvjaQIgfIpfxXXVXu5BTOXy-xDMDh6_HIc,59
|
|
28
28
|
bedrock_agentcore_starter_toolkit/operations/memory/constants.py,sha256=0HWpxJZXmnmekIEW5TJjn9KmEqVi_REJzUN1l68ohYQ,3226
|
|
29
|
-
bedrock_agentcore_starter_toolkit/operations/memory/manager.py,sha256=
|
|
29
|
+
bedrock_agentcore_starter_toolkit/operations/memory/manager.py,sha256=miGo2P3kzMM2ExBgL0jdPOIBih5GA5PqgJF3tq29uYE,44248
|
|
30
30
|
bedrock_agentcore_starter_toolkit/operations/memory/strategy_validator.py,sha256=s01xd0x2cMNweuQdB6Fiyxz3RU3mTkHUC5zFW28jfXE,18754
|
|
31
31
|
bedrock_agentcore_starter_toolkit/operations/memory/models/DictWrapper.py,sha256=GtPnR2NoZ9BXZX4fFYupG97T-YEet2NrBFlaDZIS-gM,1693
|
|
32
32
|
bedrock_agentcore_starter_toolkit/operations/memory/models/Memory.py,sha256=As1b9al57zlYWUAHcwIuHjL-6QAsfH_zhxD8xU9gh3I,424
|
|
@@ -34,24 +34,27 @@ bedrock_agentcore_starter_toolkit/operations/memory/models/MemoryStrategy.py,sha
|
|
|
34
34
|
bedrock_agentcore_starter_toolkit/operations/memory/models/MemorySummary.py,sha256=H5Itj_R3XKaUHJk4_8N_ViAfwkI-9wDhBrmOQq570Sw,469
|
|
35
35
|
bedrock_agentcore_starter_toolkit/operations/memory/models/__init__.py,sha256=zyBO5bICw6otL528wNwkNl1BJ8BLyW0BfoVyD5hepbQ,2997
|
|
36
36
|
bedrock_agentcore_starter_toolkit/operations/memory/models/strategies/__init__.py,sha256=rn9PQKaNkxQrSSWJ_QLST9XjAkcL8rSyWg1w8kvLf7I,1617
|
|
37
|
-
bedrock_agentcore_starter_toolkit/operations/memory/models/strategies/base.py,sha256=
|
|
37
|
+
bedrock_agentcore_starter_toolkit/operations/memory/models/strategies/base.py,sha256=zLRNF6kCqNjApL8HoXsJFGotqJLnLFDxjybxgMjP7po,2702
|
|
38
38
|
bedrock_agentcore_starter_toolkit/operations/memory/models/strategies/custom.py,sha256=6PSRoY2DTMca1Lb40b9YC5nCRZblkFVarvTP3qRDuXU,7544
|
|
39
|
+
bedrock_agentcore_starter_toolkit/operations/memory/models/strategies/self_managed.py,sha256=LJtlo-NSgNeZaAklp1VJZTM_kcD5tDtgCXdHHPLGn6g,4208
|
|
39
40
|
bedrock_agentcore_starter_toolkit/operations/memory/models/strategies/semantic.py,sha256=Dp5L_zSojst8YSWRDMolFIbfQ72vqEeFlK9sPJKQ_I4,1073
|
|
40
41
|
bedrock_agentcore_starter_toolkit/operations/memory/models/strategies/summary.py,sha256=X0sVh-6Hw9PPnpPQucG_M7gVyXUiElZInFXBN8WDFUQ,1015
|
|
41
42
|
bedrock_agentcore_starter_toolkit/operations/memory/models/strategies/user_preference.py,sha256=JJPAzt_Shix5a-RJEf7xOEzN5kxtX3dpP8xoMvry61U,996
|
|
42
|
-
bedrock_agentcore_starter_toolkit/operations/runtime/__init__.py,sha256=
|
|
43
|
-
bedrock_agentcore_starter_toolkit/operations/runtime/configure.py,sha256=
|
|
43
|
+
bedrock_agentcore_starter_toolkit/operations/runtime/__init__.py,sha256=YhRXupUdNAfR5GNbwQOHk-YJs5bHh_km01e_e4kk5uk,1123
|
|
44
|
+
bedrock_agentcore_starter_toolkit/operations/runtime/configure.py,sha256=vG3Bg--TvL8SpEqMaolLeLlXnPFBdMPUKBG_Q3-vOH8,24076
|
|
44
45
|
bedrock_agentcore_starter_toolkit/operations/runtime/create_role.py,sha256=1-b_wBvkOXNh-HJsxATwHfXQqj0dpdETds0FNSTY0BE,16116
|
|
45
46
|
bedrock_agentcore_starter_toolkit/operations/runtime/destroy.py,sha256=iyAH1-D734cmiluASGMcp3wwXZ10IlhKi-acsGEQ8Yk,26204
|
|
46
47
|
bedrock_agentcore_starter_toolkit/operations/runtime/exceptions.py,sha256=7iZNVbsz5XyvnpMM4paJb5_LT6DYdEI3nHhM9f3BERE,869
|
|
47
|
-
bedrock_agentcore_starter_toolkit/operations/runtime/invoke.py,sha256=
|
|
48
|
-
bedrock_agentcore_starter_toolkit/operations/runtime/launch.py,sha256=
|
|
49
|
-
bedrock_agentcore_starter_toolkit/operations/runtime/models.py,sha256=
|
|
50
|
-
bedrock_agentcore_starter_toolkit/operations/runtime/status.py,sha256=
|
|
48
|
+
bedrock_agentcore_starter_toolkit/operations/runtime/invoke.py,sha256=3V_PqQdHpVISzlkglYvDgpDZKUPJc7fJJiuYa4hhimM,6074
|
|
49
|
+
bedrock_agentcore_starter_toolkit/operations/runtime/launch.py,sha256=iDtAD4qMvbiYWN4RbYVI44SfVLUJfsddfaIewYuzHwY,38366
|
|
50
|
+
bedrock_agentcore_starter_toolkit/operations/runtime/models.py,sha256=ifUyYf4EelQvnnNdKNyZ6c7zIYmVet-rC5q43P2aAuk,6026
|
|
51
|
+
bedrock_agentcore_starter_toolkit/operations/runtime/status.py,sha256=gbtJ9K6FlGA0TSeV_QjRdHhDVJbupEyaZ8JT0kIsCrg,6905
|
|
52
|
+
bedrock_agentcore_starter_toolkit/operations/runtime/stop_session.py,sha256=grX2R0VpHGOhoHjRmG1EIfuvW3jDFG-rivA7RJXnVVU,4615
|
|
53
|
+
bedrock_agentcore_starter_toolkit/operations/runtime/vpc_validation.py,sha256=V2pWjs3r69JDYUW3jz77pUGihR7KhhglfabuJ4xO9LA,6867
|
|
51
54
|
bedrock_agentcore_starter_toolkit/services/__init__.py,sha256=s7QtYYFCCX2ff0gZHUdDxCDI3zhUq0fPsjevZbF9xdA,66
|
|
52
55
|
bedrock_agentcore_starter_toolkit/services/codebuild.py,sha256=CA4OgkMiZPbV6KBFswBLlSuaWgcH1wnTmRnvSEmHxpc,15925
|
|
53
56
|
bedrock_agentcore_starter_toolkit/services/ecr.py,sha256=a9VpxIzYohPvAiAsl9jPp5vZcalCxt9LpqW4S7CdFPo,3991
|
|
54
|
-
bedrock_agentcore_starter_toolkit/services/runtime.py,sha256=
|
|
57
|
+
bedrock_agentcore_starter_toolkit/services/runtime.py,sha256=43UW_K7WDZ8ysQNGWnEuXX2tfey6ZscMaVqE0ZiWSJI,23833
|
|
55
58
|
bedrock_agentcore_starter_toolkit/services/xray.py,sha256=CRlcfVXpghVy7PvZqLUC4rp49Sw5DQ98rUU61HAluRM,6363
|
|
56
59
|
bedrock_agentcore_starter_toolkit/services/import_agent/__init__.py,sha256=ig-xanZqA3oJdRTucYz9xF9_2yi31ADRVIKFsnIw_l4,68
|
|
57
60
|
bedrock_agentcore_starter_toolkit/services/import_agent/utils.py,sha256=yCnzqv3S8sbQi6ArTz3MeR4ggRcojbAgMbBb7KAf0sA,16077
|
|
@@ -70,14 +73,14 @@ bedrock_agentcore_starter_toolkit/utils/runtime/container.py,sha256=OuKhOKB051c_
|
|
|
70
73
|
bedrock_agentcore_starter_toolkit/utils/runtime/entrypoint.py,sha256=d-XjEwvQOdpRHvBGLdIBCs1fgUwNwB0EL_WkcdQXwXQ,5893
|
|
71
74
|
bedrock_agentcore_starter_toolkit/utils/runtime/logs.py,sha256=ZZ9PD4QO0BSms5KphhUb3-6-IPTkmwkY-Zn2AWM9Aew,1601
|
|
72
75
|
bedrock_agentcore_starter_toolkit/utils/runtime/policy_template.py,sha256=CgER7YXPh0BpR6JcTcumDL_k8bhmfLSEok1sf09-31I,2054
|
|
73
|
-
bedrock_agentcore_starter_toolkit/utils/runtime/schema.py,sha256=
|
|
76
|
+
bedrock_agentcore_starter_toolkit/utils/runtime/schema.py,sha256=BB3fONUsvf5vQyQyoC3xa1s5OwgQh9FEVgl_bgrkEAA,11390
|
|
74
77
|
bedrock_agentcore_starter_toolkit/utils/runtime/templates/Dockerfile.j2,sha256=7vu1Mbo5m1M7gE0SQZ6iFkZppTho8w4BoOe0yYyJjug,1487
|
|
75
78
|
bedrock_agentcore_starter_toolkit/utils/runtime/templates/dockerignore.template,sha256=IDKPnAiCdMLjuvLdItzQiybCW--SEvHAN2yr-B5Mxj4,711
|
|
76
79
|
bedrock_agentcore_starter_toolkit/utils/runtime/templates/execution_role_policy.json.j2,sha256=BnVE3ofq2PCrl56VFjilG1RkJEiZ2L3MM2wFok7XTaU,5667
|
|
77
80
|
bedrock_agentcore_starter_toolkit/utils/runtime/templates/execution_role_trust_policy.json.j2,sha256=PPJF6Ofq70W5DUE0NlbmnZjw5RkgepPgkskxEgEG28o,473
|
|
78
|
-
bedrock_agentcore_starter_toolkit-0.1.
|
|
79
|
-
bedrock_agentcore_starter_toolkit-0.1.
|
|
80
|
-
bedrock_agentcore_starter_toolkit-0.1.
|
|
81
|
-
bedrock_agentcore_starter_toolkit-0.1.
|
|
82
|
-
bedrock_agentcore_starter_toolkit-0.1.
|
|
83
|
-
bedrock_agentcore_starter_toolkit-0.1.
|
|
81
|
+
bedrock_agentcore_starter_toolkit-0.1.27.dist-info/METADATA,sha256=T53v1Ija4dWU034rkjSW8I35R_p2MyL8YVe5CGc3zfE,9923
|
|
82
|
+
bedrock_agentcore_starter_toolkit-0.1.27.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
83
|
+
bedrock_agentcore_starter_toolkit-0.1.27.dist-info/entry_points.txt,sha256=Tf94DkUf2Tp8P7p8MEXLxre7A7Pp_XNukteiz0wHnk8,77
|
|
84
|
+
bedrock_agentcore_starter_toolkit-0.1.27.dist-info/licenses/LICENSE.txt,sha256=nNPOMinitYdtfbhdQgsPgz1UowBznU6QVN3Xs0pSTKU,10768
|
|
85
|
+
bedrock_agentcore_starter_toolkit-0.1.27.dist-info/licenses/NOTICE.txt,sha256=rkBsg8DbKqfIoQbveqX9foR4uJPUVAokbkr02pRPilE,8674
|
|
86
|
+
bedrock_agentcore_starter_toolkit-0.1.27.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|