aip-agents-binary 0.5.25b9__py3-none-any.whl → 0.6.1__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.
- aip_agents/agent/base_langgraph_agent.py +137 -68
- aip_agents/agent/base_langgraph_agent.pyi +3 -2
- aip_agents/agent/langgraph_react_agent.py +252 -16
- aip_agents/agent/langgraph_react_agent.pyi +40 -1
- aip_agents/examples/compare_streaming_client.py +2 -2
- aip_agents/examples/compare_streaming_server.py +1 -1
- aip_agents/examples/hello_world_ptc.py +51 -0
- aip_agents/examples/hello_world_ptc.pyi +5 -0
- aip_agents/examples/hello_world_tool_output_client.py +9 -0
- aip_agents/examples/todolist_planning_a2a_langchain_client.py +2 -2
- aip_agents/examples/todolist_planning_a2a_langgraph_server.py +1 -1
- aip_agents/guardrails/engines/base.py +6 -6
- aip_agents/mcp/client/connection_manager.py +36 -1
- aip_agents/mcp/client/connection_manager.pyi +3 -0
- aip_agents/mcp/client/persistent_session.py +318 -68
- aip_agents/mcp/client/persistent_session.pyi +9 -0
- aip_agents/mcp/client/transports.py +33 -2
- aip_agents/mcp/client/transports.pyi +9 -0
- aip_agents/ptc/__init__.py +48 -0
- aip_agents/ptc/__init__.pyi +10 -0
- aip_agents/ptc/doc_gen.py +122 -0
- aip_agents/ptc/doc_gen.pyi +40 -0
- aip_agents/ptc/exceptions.py +39 -0
- aip_agents/ptc/exceptions.pyi +22 -0
- aip_agents/ptc/executor.py +143 -0
- aip_agents/ptc/executor.pyi +73 -0
- aip_agents/ptc/mcp/__init__.py +45 -0
- aip_agents/ptc/mcp/__init__.pyi +7 -0
- aip_agents/ptc/mcp/sandbox_bridge.py +668 -0
- aip_agents/ptc/mcp/sandbox_bridge.pyi +47 -0
- aip_agents/ptc/mcp/templates/__init__.py +1 -0
- aip_agents/ptc/mcp/templates/__init__.pyi +0 -0
- aip_agents/ptc/mcp/templates/mcp_client.py.template +239 -0
- aip_agents/ptc/naming.py +184 -0
- aip_agents/ptc/naming.pyi +76 -0
- aip_agents/ptc/payload.py +26 -0
- aip_agents/ptc/payload.pyi +15 -0
- aip_agents/ptc/prompt_builder.py +571 -0
- aip_agents/ptc/prompt_builder.pyi +55 -0
- aip_agents/ptc/ptc_helper.py +16 -0
- aip_agents/ptc/ptc_helper.pyi +1 -0
- aip_agents/ptc/sandbox_bridge.py +58 -0
- aip_agents/ptc/sandbox_bridge.pyi +25 -0
- aip_agents/ptc/template_utils.py +33 -0
- aip_agents/ptc/template_utils.pyi +13 -0
- aip_agents/ptc/templates/__init__.py +1 -0
- aip_agents/ptc/templates/__init__.pyi +0 -0
- aip_agents/ptc/templates/ptc_helper.py.template +134 -0
- aip_agents/sandbox/__init__.py +43 -0
- aip_agents/sandbox/__init__.pyi +5 -0
- aip_agents/sandbox/defaults.py +9 -0
- aip_agents/sandbox/defaults.pyi +2 -0
- aip_agents/sandbox/e2b_runtime.py +267 -0
- aip_agents/sandbox/e2b_runtime.pyi +51 -0
- aip_agents/sandbox/template_builder.py +131 -0
- aip_agents/sandbox/template_builder.pyi +36 -0
- aip_agents/sandbox/types.py +24 -0
- aip_agents/sandbox/types.pyi +14 -0
- aip_agents/sandbox/validation.py +50 -0
- aip_agents/sandbox/validation.pyi +20 -0
- aip_agents/tools/__init__.py +2 -0
- aip_agents/tools/__init__.pyi +2 -1
- aip_agents/tools/browser_use/browser_use_tool.py +8 -0
- aip_agents/tools/browser_use/streaming.py +2 -0
- aip_agents/tools/execute_ptc_code.py +305 -0
- aip_agents/tools/execute_ptc_code.pyi +87 -0
- aip_agents/utils/langgraph/tool_managers/delegation_tool_manager.py +26 -1
- aip_agents/utils/langgraph/tool_output_management.py +80 -0
- aip_agents/utils/langgraph/tool_output_management.pyi +37 -0
- {aip_agents_binary-0.5.25b9.dist-info → aip_agents_binary-0.6.1.dist-info}/METADATA +51 -48
- {aip_agents_binary-0.5.25b9.dist-info → aip_agents_binary-0.6.1.dist-info}/RECORD +73 -27
- {aip_agents_binary-0.5.25b9.dist-info → aip_agents_binary-0.6.1.dist-info}/WHEEL +0 -0
- {aip_agents_binary-0.5.25b9.dist-info → aip_agents_binary-0.6.1.dist-info}/top_level.txt +0 -0
|
@@ -20,8 +20,8 @@ aip_agents/agent/__init__.py,sha256=noyxX-rddnulFTp9CLOPmlpsysteku3Q2r_nBbfECvc,
|
|
|
20
20
|
aip_agents/agent/__init__.pyi,sha256=N-XcIaJOUMl6-ZVEHlZNN6PcahotUSeLRYMWxC2Juj0,864
|
|
21
21
|
aip_agents/agent/base_agent.py,sha256=-8TyVGRUqPBwREoDoU14UbSJ3qdtfQ_a6VxdU8P4BCM,40639
|
|
22
22
|
aip_agents/agent/base_agent.pyi,sha256=piwAfkyD4Zw1IESdrx4lIrR8oBABrYai88EzabKTtZ0,11339
|
|
23
|
-
aip_agents/agent/base_langgraph_agent.py,sha256=
|
|
24
|
-
aip_agents/agent/base_langgraph_agent.pyi,sha256=
|
|
23
|
+
aip_agents/agent/base_langgraph_agent.py,sha256=LwEKqv6htsnRjz5ucGlrw1JLmUE1ZQ5FckjAJykMrFc,126035
|
|
24
|
+
aip_agents/agent/base_langgraph_agent.pyi,sha256=XBPJi_FP-HAv9gQYz70yOUDttekKkeHV8g8tXTz5lmY,11826
|
|
25
25
|
aip_agents/agent/google_adk_agent.py,sha256=8zNLEnWlvwh0qxY65bZKuxBipsTFT-sbmb6zD12cMDA,38062
|
|
26
26
|
aip_agents/agent/google_adk_agent.pyi,sha256=O7DDlLAHLFBLpBKt1wMIqWX9GqI-_x2mGpkIACyXqf4,6389
|
|
27
27
|
aip_agents/agent/google_adk_constants.py,sha256=kU-zSncuifqO6UWtpG9QG15MeQZiK5bVwf9iSpj9SyY,216
|
|
@@ -34,8 +34,8 @@ aip_agents/agent/langflow_agent.py,sha256=3KjB4ZBAIAqPKK5pML3DuiQ_yixx2L4dTQSW2p
|
|
|
34
34
|
aip_agents/agent/langflow_agent.pyi,sha256=HOzMWIkga8F_ZFrzT62JdX9vhh8JhQVg-ylrr2Tglyo,5800
|
|
35
35
|
aip_agents/agent/langgraph_memory_enhancer_agent.py,sha256=1AvvqvFfeLf80Jw2W2Mm7TdpwO3o_OC7r-30M4EIWeU,17859
|
|
36
36
|
aip_agents/agent/langgraph_memory_enhancer_agent.pyi,sha256=6n6cd3udUhSaVTxqulnjCCgR-eUROnBEW2lFkAQCBQ4,2644
|
|
37
|
-
aip_agents/agent/langgraph_react_agent.py,sha256=
|
|
38
|
-
aip_agents/agent/langgraph_react_agent.pyi,sha256=
|
|
37
|
+
aip_agents/agent/langgraph_react_agent.py,sha256=dOsMAFhYpojMtLH6gJmpT8BBfhBv1ICSksCeaiOx0kA,119389
|
|
38
|
+
aip_agents/agent/langgraph_react_agent.pyi,sha256=JYETZaQMmp4Ja0QN0fg6YZKBlH-GVQ25Ydb73tdeJUo,10645
|
|
39
39
|
aip_agents/agent/system_instruction_context.py,sha256=6lQAJ6DJv1aF8wjalxdsNWqEDZmomHwnhnPikLCfzj4,1220
|
|
40
40
|
aip_agents/agent/system_instruction_context.pyi,sha256=gpYUr_CjWU_qVFobX_sduKDQN_wwtRL9BdnYv0WZ0Mc,424
|
|
41
41
|
aip_agents/agent/hitl/__init__.py,sha256=qyxPIfSJ08MrvkE1qBZxdiom4VxSJSGEkrjqUZY2kNg,850
|
|
@@ -67,9 +67,9 @@ aip_agents/clients/langflow/types.pyi,sha256=BaCgeyoWNEYGH9_i436chTH-NZ-6RrU8QAB
|
|
|
67
67
|
aip_agents/credentials/manager.py,sha256=IFJBiF-3LFkzLWz9xcNI1c5IxUriQjt5J_xATA9WMQU,4840
|
|
68
68
|
aip_agents/examples/__init__.py,sha256=KDL2do9_iDjXNbrLPOzxegQPEQLm0tTMVNo5Uq2BpRA,188
|
|
69
69
|
aip_agents/examples/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
70
|
-
aip_agents/examples/compare_streaming_client.py,sha256=
|
|
70
|
+
aip_agents/examples/compare_streaming_client.py,sha256=kzF_xdsxCvCe27N18ec0-oJ0zhdJZQOiwFnuDzF0X4M,34339
|
|
71
71
|
aip_agents/examples/compare_streaming_client.pyi,sha256=5nArTm9Wv9KvABk-ALO5Fs1N58qV8ttl57kUuggSmxA,3056
|
|
72
|
-
aip_agents/examples/compare_streaming_server.py,sha256=
|
|
72
|
+
aip_agents/examples/compare_streaming_server.py,sha256=49YlFviQhhSGUFbCmlqn4-LijAlPKyEu5NNNTEzQt50,5776
|
|
73
73
|
aip_agents/examples/compare_streaming_server.pyi,sha256=khxXVb93GzTKrBCwQG_SDS_7jrlOCqrfJtcUFEhi2jM,860
|
|
74
74
|
aip_agents/examples/demo_memory_recall.py,sha256=ZTQGgYeSRL0XXA50426Xqh6J7zhJULfVsZ7vobH3smg,15914
|
|
75
75
|
aip_agents/examples/demo_memory_recall.pyi,sha256=BscHLiINZkZCD0EO3vzy6j2I0esb8abRHsvluoFkPXY,2628
|
|
@@ -209,13 +209,15 @@ aip_agents/examples/hello_world_multi_agent_langgraph_lm_invoker.py,sha256=B0I92
|
|
|
209
209
|
aip_agents/examples/hello_world_multi_agent_langgraph_lm_invoker.pyi,sha256=OHkTLSqRAM7TOZEp6TH5dsPq9zbpi9UA_l0rDIrqFlM,257
|
|
210
210
|
aip_agents/examples/hello_world_pii_logger.py,sha256=xH4PNGetuZv1TJj5Y1fqvm1Vto0pp1u5ju-ORccEFwo,605
|
|
211
211
|
aip_agents/examples/hello_world_pii_logger.pyi,sha256=tZ0oOfd_gK97KHczzEh3PQfTt2eedh25IL7Q1PhVDWU,139
|
|
212
|
+
aip_agents/examples/hello_world_ptc.py,sha256=crx641hItpnUmh1b09a0mJcKSygJQDmicFfcKQOcqIA,1513
|
|
213
|
+
aip_agents/examples/hello_world_ptc.pyi,sha256=uGDk7WAt4iXbKJ4zKp-qd2IzBLWUAZ5ehPdLDhteVaw,236
|
|
212
214
|
aip_agents/examples/hello_world_sentry.py,sha256=HRnIVTkaqcUGbVbVVCzB8HQv5nVqHbt_3aPiflrD31M,4109
|
|
213
215
|
aip_agents/examples/hello_world_sentry.pyi,sha256=Z6t3ywrVlgBI9NFxbcbhRVAwt71Q3NsB_JvwZhcd0aQ,692
|
|
214
216
|
aip_agents/examples/hello_world_step_limits.py,sha256=0f02AFrpfAertnjSHxQiU6uAyIWt0ovQ3aQ5QCJPSx4,10082
|
|
215
217
|
aip_agents/examples/hello_world_step_limits.pyi,sha256=U9kx6rIgfZuNHxeAIiyW_Ae-KT65kNqCdCMQzKEKlBc,1077
|
|
216
218
|
aip_agents/examples/hello_world_stock_a2a_server.py,sha256=LQUtBl5ibW4P1o6qHAnBsySg9DK2ffOthgxyPgmo53g,3536
|
|
217
219
|
aip_agents/examples/hello_world_stock_a2a_server.pyi,sha256=5fuuaFEnaKlBaoNmY_LhHZ_d94Kek9a7wHwpkuGlZwQ,674
|
|
218
|
-
aip_agents/examples/hello_world_tool_output_client.py,sha256=
|
|
220
|
+
aip_agents/examples/hello_world_tool_output_client.py,sha256=U1KTQpFfxr6KUNy0wQbM6q4W7ZOZVT4_7vC_E_iSaJw,2027
|
|
219
221
|
aip_agents/examples/hello_world_tool_output_client.pyi,sha256=FvcNForrAMadrVhEG6wiY0ap5HobZjPZlUbhiON7Nss,245
|
|
220
222
|
aip_agents/examples/hello_world_tool_output_server.py,sha256=Q2vYQZVTUW9zeaIk7CHXNWdsI_xHKES3jkt_luA4vSU,4153
|
|
221
223
|
aip_agents/examples/hello_world_tool_output_server.pyi,sha256=wjt_j3ZhXTeVu_xouQRWrGMxNXikFt0qBKtaFYFVh_4,985
|
|
@@ -229,9 +231,9 @@ aip_agents/examples/pii_demo_multi_agent_client.py,sha256=la7LyDoCNYi4dipBRlo0oS
|
|
|
229
231
|
aip_agents/examples/pii_demo_multi_agent_client.pyi,sha256=Udp6pOPNpS5mNSyORALua4ap0dcnRhVbCodwxLoCraY,236
|
|
230
232
|
aip_agents/examples/pii_demo_multi_agent_server.py,sha256=2-dbylX8T4Raten84myUGc5uFkyKDTiXSgM05bTLIbo,9606
|
|
231
233
|
aip_agents/examples/pii_demo_multi_agent_server.pyi,sha256=dUDUjt-oS5yMRjBKZ_18pv2EWs3k7QYfxRAaRknqEfg,1611
|
|
232
|
-
aip_agents/examples/todolist_planning_a2a_langchain_client.py,sha256=
|
|
234
|
+
aip_agents/examples/todolist_planning_a2a_langchain_client.py,sha256=zze0K8OhXrl-9oupd9Qk5r6h7uu_zrEsN85dW1G__oM,2641
|
|
233
235
|
aip_agents/examples/todolist_planning_a2a_langchain_client.pyi,sha256=da6jTPvRHkT1BIaEqW_pBgJPPRM6v5YmhGehQFPLDLA,239
|
|
234
|
-
aip_agents/examples/todolist_planning_a2a_langgraph_server.py,sha256=
|
|
236
|
+
aip_agents/examples/todolist_planning_a2a_langgraph_server.py,sha256=9urX1m5f7gFH_5mUzr58Twl-LHshefjbY9OWeZHbync,3103
|
|
235
237
|
aip_agents/examples/todolist_planning_a2a_langgraph_server.pyi,sha256=FIV8kDQWe94Hm9gEwz8j3YEYgMVstkwzcPwAdyIglDQ,775
|
|
236
238
|
aip_agents/examples/mcp_configs/configs.py,sha256=7ZhCRiHLCyolhmUxnwfqHihLc2-r0Paa-qr_LpZ7saY,1678
|
|
237
239
|
aip_agents/examples/mcp_servers/common.py,sha256=G_f75ahqIDKLEnWltpH-jTkMbTTYcVeW_hIMY3dfDiM,2608
|
|
@@ -294,7 +296,7 @@ aip_agents/guardrails/utils.py,sha256=Rp9zwLWUydvZmZE4xvAXhIdN05LX-aTkPqWRaQb7-Y
|
|
|
294
296
|
aip_agents/guardrails/utils.pyi,sha256=b7-XBFiv7QS0NG5AGvExmglp4UQJGpq-972dtgyMbhE,709
|
|
295
297
|
aip_agents/guardrails/engines/__init__.py,sha256=j-H1-rOKe-R-WHyq1tjAi0usEUA7UjhLCwywhom-mo0,2239
|
|
296
298
|
aip_agents/guardrails/engines/__init__.pyi,sha256=W7UjIO5tMaH8PbHs0AIKGV6A2OBNXYJPXsM_xhiQfw4,252
|
|
297
|
-
aip_agents/guardrails/engines/base.py,sha256=
|
|
299
|
+
aip_agents/guardrails/engines/base.py,sha256=SLLaTpXbVrtkpL5ncPAR2xh53qHeJ_Ockp_xEbC9HnI,2833
|
|
298
300
|
aip_agents/guardrails/engines/base.pyi,sha256=tTxR1zOL-YMEdWkXkU_Pj9y6gshR7mrcyHdjedkK41Y,2297
|
|
299
301
|
aip_agents/guardrails/engines/nemo.py,sha256=1LtevUmghKbHmoj1wJKXVhPZd4ETRXD-X7DJo7xSiZw,3902
|
|
300
302
|
aip_agents/guardrails/engines/nemo.pyi,sha256=Jh5Yma4uOXGrmJO_cshCKVkPd4wjXSmV-XxNuj-pjxc,2027
|
|
@@ -306,14 +308,14 @@ aip_agents/mcp/client/__init__.py,sha256=Kp0iOfmk2Vdo9wwKu3plcxmJT6HlWvpXiTm9MTX
|
|
|
306
308
|
aip_agents/mcp/client/__init__.pyi,sha256=FTGGlE60OFEOhZYIUddQor5wQPD5JWMEJ2Wrw3LpZN8,344
|
|
307
309
|
aip_agents/mcp/client/base_mcp_client.py,sha256=0S10MIi5rSlL350b9MiNLVPe8Tj3ytaG_Y3OpUb1NK4,14342
|
|
308
310
|
aip_agents/mcp/client/base_mcp_client.pyi,sha256=LWnmN1IH1REdL0EebZN00gfZsico8jj0WDAI5vsJYEk,6029
|
|
309
|
-
aip_agents/mcp/client/connection_manager.py,sha256=
|
|
310
|
-
aip_agents/mcp/client/connection_manager.pyi,sha256=
|
|
311
|
-
aip_agents/mcp/client/persistent_session.py,sha256=
|
|
312
|
-
aip_agents/mcp/client/persistent_session.pyi,sha256=
|
|
311
|
+
aip_agents/mcp/client/connection_manager.py,sha256=QKsM8yBGn9aFpN4nZZMM04BA3JqwzFZP1UWUrUJ5-bY,9365
|
|
312
|
+
aip_agents/mcp/client/connection_manager.pyi,sha256=tBptBzvaRVj-u5HaZjvnf9zVQgTkki8yLV-QQLPRd8o,2002
|
|
313
|
+
aip_agents/mcp/client/persistent_session.py,sha256=1RUfoTVfKqxoY1nLLh4IcLVSYJkwMQRb2kDopDBlaW0,24464
|
|
314
|
+
aip_agents/mcp/client/persistent_session.pyi,sha256=fvzLGjpyyK-3XDI9CrJJGD1FQ7IHS7qv3AvLNOdscLM,4389
|
|
313
315
|
aip_agents/mcp/client/session_pool.py,sha256=qYxtalGyT1Z4a5LIDe2X9QinduOz4f_U9yDzBH_qjKI,12968
|
|
314
316
|
aip_agents/mcp/client/session_pool.pyi,sha256=dUXl8g4G4asZ1CplaeZaR24suyU4gAgKzvQNOlriQA0,3680
|
|
315
|
-
aip_agents/mcp/client/transports.py,sha256=
|
|
316
|
-
aip_agents/mcp/client/transports.pyi,sha256=
|
|
317
|
+
aip_agents/mcp/client/transports.py,sha256=rT6qaPEvMgotn61dDupNp19x6c3Ws_hKxiAx6MAKofE,10167
|
|
318
|
+
aip_agents/mcp/client/transports.pyi,sha256=YHOLyb2S8zwWMnwvCvv9uG9wyLj7rM_feLUlmJSU3lw,5090
|
|
317
319
|
aip_agents/mcp/client/google_adk/__init__.py,sha256=mbVak_4MCHVNkgm6EQhkrR1HDAPo1Q7cP3nk55TPtu4,291
|
|
318
320
|
aip_agents/mcp/client/google_adk/__init__.pyi,sha256=lG0PHv3Rcvl4BOeUkmJC5nx2HQJsmUMnYmC9iD99l0s,130
|
|
319
321
|
aip_agents/mcp/client/google_adk/client.py,sha256=Q7nInxbOdCdy4ZCNvqtoqtlyzOd1teiq60JzbQZCjtI,16361
|
|
@@ -352,6 +354,48 @@ aip_agents/middleware/manager.py,sha256=cTSzJN-3ty2o7x7iS1xd__hdBsQiq2Rqb5bnLPvW
|
|
|
352
354
|
aip_agents/middleware/manager.pyi,sha256=UbQ-5sehP7G0sokwxCSBe4q8JLub7acFrmr0P-z65vE,3661
|
|
353
355
|
aip_agents/middleware/todolist.py,sha256=YxE1kcaP6Ov1WnfxM5z8cv5cNsJViG0NRPpbAGfpeMQ,10788
|
|
354
356
|
aip_agents/middleware/todolist.pyi,sha256=nkRSDplMiQPS0qhNrMoDB1ksOtarEclaGErvIZH7QQ4,4320
|
|
357
|
+
aip_agents/ptc/__init__.py,sha256=k7OsdTWjGB_LQ1YVZDR2B0Pa4NIwtwx7BBAGBn2bdaI,1458
|
|
358
|
+
aip_agents/ptc/__init__.pyi,sha256=Gi0YKXYWGFzkwRbigQuwtSk45Y7QLO997uxIL6QfIO4,575
|
|
359
|
+
aip_agents/ptc/doc_gen.py,sha256=CcSFar80f_C_r_YAZwzTVg49rk9krhA_qwKSvYiVDtE,3504
|
|
360
|
+
aip_agents/ptc/doc_gen.pyi,sha256=i7hSGLtCzF-JXNqcazD13cewncTOy34_OMtwdLjYlhU,1306
|
|
361
|
+
aip_agents/ptc/exceptions.py,sha256=nBt5QlW9BGSAQNd1smb4bmGCMPeREwnmsU68vya9IQo,944
|
|
362
|
+
aip_agents/ptc/exceptions.pyi,sha256=jAjmWTiOqFosC0XhO5LxX8r8B2E5H0GAXQYknTm5HK4,686
|
|
363
|
+
aip_agents/ptc/executor.py,sha256=0Qw4CgAgxd6YrZSqf566zVnUs-0Dy6ORVbq1ai8qx8E,5206
|
|
364
|
+
aip_agents/ptc/executor.pyi,sha256=2kyD7Hv_QX-_sQ6NnqSmryZ_01mBy1iRll9fY67wfBE,3324
|
|
365
|
+
aip_agents/ptc/naming.py,sha256=CY7whoWCynbx2K_NeWT7gPoFcm_5aqfum4l3Mnjqv0U,5185
|
|
366
|
+
aip_agents/ptc/naming.pyi,sha256=yWNQmj45v5diLPflJbm1409G-JtIG4VBRl1bAGvX-Bg,2217
|
|
367
|
+
aip_agents/ptc/payload.py,sha256=G5AV8G0BwaBdO85Z8u87jZLj1xY7vfA98LTI_mlDrXo,861
|
|
368
|
+
aip_agents/ptc/payload.pyi,sha256=D6Pxb89T2Ln-_vmAaxz6HL3jDSBHz0zbmgzxAnBsJpk,646
|
|
369
|
+
aip_agents/ptc/prompt_builder.py,sha256=FdW15QONAn3ml8G5GUQ-J-nlqTjOxQRn2XpPypIbHAU,18211
|
|
370
|
+
aip_agents/ptc/prompt_builder.pyi,sha256=0OC46oVfp7yrcR-zNEVqt4_2A-pM9QtdokTX8rzjDNM,2289
|
|
371
|
+
aip_agents/ptc/ptc_helper.py,sha256=KGPL2ZbtVKRwfbEmN4pcqFoGmjPiTPOCkNUljaPDFh8,455
|
|
372
|
+
aip_agents/ptc/ptc_helper.pyi,sha256=Tw6zTztn-umW5b--gy4YI0T1EfbzQ6m0Rhf_0VVgm0o,78
|
|
373
|
+
aip_agents/ptc/sandbox_bridge.py,sha256=xKR6si9z5AbmbkNK-QRIsutTgGpQUj5RaZm_KlgtPXk,1693
|
|
374
|
+
aip_agents/ptc/sandbox_bridge.pyi,sha256=Gh3mF9pkZOWT6BIas-xd_8TXgvk0GfAVTJ3MougBG-I,1004
|
|
375
|
+
aip_agents/ptc/template_utils.py,sha256=IzswGL7PfNy7JMAuVFb7TWKZeptISfHjlxNYwGtbLx4,931
|
|
376
|
+
aip_agents/ptc/template_utils.pyi,sha256=V7XZTY1pvL5j0Kdct2Gu-s4r6HzszaprrtZffuN_RCU,451
|
|
377
|
+
aip_agents/ptc/mcp/__init__.py,sha256=mYNGO_dAoVm6gF0TaTFpgcCUBR-uRgMBWMcs4MUZ9Ac,1163
|
|
378
|
+
aip_agents/ptc/mcp/__init__.pyi,sha256=1Jhp9lKz4w-sxITUsgJumEz9Tz0BZXysdnP0fUAfESs,923
|
|
379
|
+
aip_agents/ptc/mcp/sandbox_bridge.py,sha256=KHpdGR4JhAzjORl0qSQpbofpqVkgXLtpSB-7kC9sSFA,21086
|
|
380
|
+
aip_agents/ptc/mcp/sandbox_bridge.pyi,sha256=aRdOeJBQNao5qYLIcM5EoDKnPYkArmGEvpBKgPpu3iw,2080
|
|
381
|
+
aip_agents/ptc/mcp/templates/__init__.py,sha256=UXiWrFXTMnKozmU3JX_hZhN53J4P_mvcc2vzfA_RZI8,58
|
|
382
|
+
aip_agents/ptc/mcp/templates/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
383
|
+
aip_agents/ptc/mcp/templates/mcp_client.py.template,sha256=ZVjaa5nQd0uSJlS_lb5Q6M42cKYZzD4xrNDGRSQ2ruI,7685
|
|
384
|
+
aip_agents/ptc/templates/__init__.py,sha256=92KlBHjxR2_CSZVvkvDtZfRqKn2k3A8hjXQANHupZUY,57
|
|
385
|
+
aip_agents/ptc/templates/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
386
|
+
aip_agents/ptc/templates/ptc_helper.py.template,sha256=x68OY0l_68DFlq-yBs8I2LqHom6dmUQfFSCI68yL0bw,4198
|
|
387
|
+
aip_agents/sandbox/__init__.py,sha256=DLRxtsvymaKPZePPdpFbaISb9KiAkcHMODfasvh_qO8,1409
|
|
388
|
+
aip_agents/sandbox/__init__.pyi,sha256=kAELy84zz3NL10pX2q20gcQLwHZB9rePxewMe5aRoQg,346
|
|
389
|
+
aip_agents/sandbox/defaults.py,sha256=qvKzLeHeAnVed7DRXpIiPmNK1EgYv0rpWMF0KCTbJqw,241
|
|
390
|
+
aip_agents/sandbox/defaults.pyi,sha256=zbhPsGixnyLiRtdo-9H4icOVFpCfZ2zf0LrFGAfCSng,66
|
|
391
|
+
aip_agents/sandbox/e2b_runtime.py,sha256=t00YgwEn62iuBdWEw54DCUwbUvUL0vEeCljJy81SH4Q,9484
|
|
392
|
+
aip_agents/sandbox/e2b_runtime.pyi,sha256=2Y0WoYwDsuKoyp4f1GhZrFnQi0lyP6L9AhCgJ9bEokA,2203
|
|
393
|
+
aip_agents/sandbox/template_builder.py,sha256=6d-pAoXsuUHYGavvK10vB-KY07OKeTpd-3RMCN3VFTw,4479
|
|
394
|
+
aip_agents/sandbox/template_builder.pyi,sha256=_e7g1wM7X2gGCnRevNUfVyifWdWu5ykTly9wG4QMkkc,1558
|
|
395
|
+
aip_agents/sandbox/types.py,sha256=IFZinB6b8uv8W4e7WzVXo8JSh-aqdgfnUEtCJK82Njk,552
|
|
396
|
+
aip_agents/sandbox/types.pyi,sha256=kERf60VMpbgFGnPnHPHr9vbg5vWzlU4G8yS7qfK45fA,380
|
|
397
|
+
aip_agents/sandbox/validation.py,sha256=gr5M5HHWJnqxsT-2y51SaEn2LeDgQ98z_rmSBq7VSqI,1386
|
|
398
|
+
aip_agents/sandbox/validation.pyi,sha256=T0-E-i5gH-nkLDe6gOuLFYEQ2zEAHIgMAO1k6VjK-KE,607
|
|
355
399
|
aip_agents/schema/__init__.py,sha256=Pxqd6kvSJkKHpmkBjy3N9ncxK7aEyYFf60STfNuHgkQ,1767
|
|
356
400
|
aip_agents/schema/__init__.pyi,sha256=ATPF_cX0XxXw1cDxsaTXOS6b3wjWGZyW9GxM6jKXGQ8,1917
|
|
357
401
|
aip_agents/schema/a2a.py,sha256=00MZ4aTHGhd4j6kjUDzULhMqUpyOrCupVyRfK1aTuY4,1424
|
|
@@ -390,10 +434,12 @@ aip_agents/storage/providers/memory.py,sha256=Zd7QwYacEfaHLCpjvV3XaHSRulhfS464U0
|
|
|
390
434
|
aip_agents/storage/providers/memory.pyi,sha256=NpsqKzboQGWtxtFV1ch_C3KT0KHOLyac6TtBgkLRgjI,2188
|
|
391
435
|
aip_agents/storage/providers/object_storage.py,sha256=RlhXdaL1YTH9oqf7crvftsicHRxJlaLO3UgLPRCWlfg,6627
|
|
392
436
|
aip_agents/storage/providers/object_storage.pyi,sha256=4pvDaNqhDleOm3ijMe_Yk3meBn2UCpLP9bKAH1l6C7w,2976
|
|
393
|
-
aip_agents/tools/__init__.py,sha256
|
|
394
|
-
aip_agents/tools/__init__.pyi,sha256=
|
|
437
|
+
aip_agents/tools/__init__.py,sha256=2EMXjbvj2oKKjZmLkNSb56nSb_fOXAKrx-rN5DSeK6M,2157
|
|
438
|
+
aip_agents/tools/__init__.pyi,sha256=QRPRqIMlmiRq9uOxKwcO2C-mmgnJm-X0yQ1W9oPLCp4,1037
|
|
395
439
|
aip_agents/tools/constants.py,sha256=xNf9_pv_Rf4TCODr7BYLO05Kw5cD55MWiYfDyLWPJ3Y,5900
|
|
396
440
|
aip_agents/tools/constants.pyi,sha256=ftkzuxDMnVUqVeqm4W848olK-VSlRH4oSv1p66sZnHk,3690
|
|
441
|
+
aip_agents/tools/execute_ptc_code.py,sha256=ZaOPbuhSSwPSdgff_Zw4pIZ1iDnGF1WxJx8_hVVFpiU,11713
|
|
442
|
+
aip_agents/tools/execute_ptc_code.pyi,sha256=ch-yVYTz2NVeCLNnHL0UeVQ-lLOTa-JkFmMSGrcFBxI,4133
|
|
397
443
|
aip_agents/tools/gl_connector_tools.py,sha256=1VrXUKRiYO21v4JWOaoo1XNaIKSm_0KmXp3AMx_UL_8,4055
|
|
398
444
|
aip_agents/tools/gl_connector_tools.pyi,sha256=wPK8hjFEZvQtRxBwX2MEebw6d4bXzn7nWxvcWPgYJ-c,1405
|
|
399
445
|
aip_agents/tools/memory_search_tool.py,sha256=ClXW6BEjZNHb6NHe44KxbwZ6GSGo7v7AUzaV99LMouc,679
|
|
@@ -406,7 +452,7 @@ aip_agents/tools/browser_use/__init__.py,sha256=ARD9Y7nfd3uEUUbNIly97-Bib5RKrniW
|
|
|
406
452
|
aip_agents/tools/browser_use/__init__.pyi,sha256=MMhZgelFElCdSk7zyk4tX7ehqU5bApaIksIjAW5bHeY,511
|
|
407
453
|
aip_agents/tools/browser_use/action_parser.py,sha256=Yoleq0S8iDehXvo-AvOFur6zbPOOoQFTh9rnYluN5ec,3469
|
|
408
454
|
aip_agents/tools/browser_use/action_parser.pyi,sha256=rguXTXEL043jPNPrwhd7MRYZBk3EW_2QsMWMN4SHY_I,741
|
|
409
|
-
aip_agents/tools/browser_use/browser_use_tool.py,sha256=
|
|
455
|
+
aip_agents/tools/browser_use/browser_use_tool.py,sha256=BkIzEd5t6cHpSlkf_6pKRoV857_iAbdugXbAFzRLUPo,46162
|
|
410
456
|
aip_agents/tools/browser_use/browser_use_tool.pyi,sha256=bcnTWav9HdpmTr3iBYd3x4UfeHnXgDJy-44FMh-nLD0,3307
|
|
411
457
|
aip_agents/tools/browser_use/llm_config.py,sha256=8rC6ui12K5PQ4sl4OLYLbssN5ktgBUc9rWqQdqqjThw,3820
|
|
412
458
|
aip_agents/tools/browser_use/llm_config.pyi,sha256=fqIaTaf10sg55O8rS3e2IcqCaONQdacJE0zA6abI7mA,2167
|
|
@@ -420,7 +466,7 @@ aip_agents/tools/browser_use/session_errors.py,sha256=rVXn0LbWllcASNQs2CbYCWX2K5
|
|
|
420
466
|
aip_agents/tools/browser_use/session_errors.pyi,sha256=1ldh3XUNq2z858Q69TCOMJEmFP_AIHkxfCuk-TPEv-c,1845
|
|
421
467
|
aip_agents/tools/browser_use/steel_session_recording.py,sha256=cG47Dy5BcqmRfJeNf2SK-1rxOiBE5DDBDDqaNodif48,11971
|
|
422
468
|
aip_agents/tools/browser_use/steel_session_recording.pyi,sha256=istvwMc_mVt91FZLBDcHFcTrN6-jOzxIBNBEesjXK2E,2232
|
|
423
|
-
aip_agents/tools/browser_use/streaming.py,sha256=
|
|
469
|
+
aip_agents/tools/browser_use/streaming.py,sha256=EcHdY4Uzl0mAuxBx6v8_a0r4RdPJKmtZPNI47iQPhyo,28650
|
|
424
470
|
aip_agents/tools/browser_use/streaming.pyi,sha256=yWsp9uPlvPfia8iUqM4Xhvu-xdsEi_rlMru8QpZbjbw,3273
|
|
425
471
|
aip_agents/tools/browser_use/structured_data_parser.py,sha256=xJfdrZMMdUh3FSTPIz0MfZKebHQNkQKcUFutcHlif8M,8629
|
|
426
472
|
aip_agents/tools/browser_use/structured_data_parser.pyi,sha256=qK9FCc38aOO7grTepaWMkSw40YwoxGIiBzWp_WhQpNQ,3928
|
|
@@ -508,15 +554,15 @@ aip_agents/utils/langgraph/__init__.py,sha256=HtMR15klo5h2KBhG8uFIIurW3BLR5ibwXl
|
|
|
508
554
|
aip_agents/utils/langgraph/__init__.pyi,sha256=FatR5jsVWWJ5Jw0UreaSHqYwk21xHEf4z36iBpE7N14,616
|
|
509
555
|
aip_agents/utils/langgraph/converter.py,sha256=xxHpolY7RTJuNDtdkPhKRct3ranvSd1G02GFcx79bNc,5048
|
|
510
556
|
aip_agents/utils/langgraph/converter.pyi,sha256=N8ZR0YpajpIidyZDsXWM-qu4iW68Juwdq0qn_mjlQiE,2034
|
|
511
|
-
aip_agents/utils/langgraph/tool_output_management.py,sha256=
|
|
512
|
-
aip_agents/utils/langgraph/tool_output_management.pyi,sha256
|
|
557
|
+
aip_agents/utils/langgraph/tool_output_management.py,sha256=bklNSAi_Uo6snsC1c7lQssbD0MBDYCa-RiPn_fZpRkU,43116
|
|
558
|
+
aip_agents/utils/langgraph/tool_output_management.pyi,sha256=-6bRrKGTe1DvbfyMppqcjGSdKHSnKDj1A-D3aCy0jFI,14164
|
|
513
559
|
aip_agents/utils/langgraph/tool_managers/__init__.py,sha256=Lwy2EIBaBj61TxapY16XfiQzry2EjfLN6QxPz3l6bUw,702
|
|
514
560
|
aip_agents/utils/langgraph/tool_managers/__init__.pyi,sha256=ts9bnhpknKjOIIX2faLwYPMejq7Rn0mHZnwves5kBlQ,439
|
|
515
561
|
aip_agents/utils/langgraph/tool_managers/a2a_tool_manager.py,sha256=_iQJUEPhnw0xDGSReJmZ5aiIWIJAqSL76704NhZv3K8,3913
|
|
516
562
|
aip_agents/utils/langgraph/tool_managers/a2a_tool_manager.pyi,sha256=QwXIb_7J4V_IHaUuk1nKfJ_DfWFKwjZVvmax63sTm2g,1434
|
|
517
563
|
aip_agents/utils/langgraph/tool_managers/base_tool_manager.py,sha256=Ud64XEr1gJG3RFcrO7L9a5_MhMHmF2BN4RHMm7VTMDw,2092
|
|
518
564
|
aip_agents/utils/langgraph/tool_managers/base_tool_manager.pyi,sha256=zqO4pblMPfQbrIwynECKuNCrpxiwTGQUy1QGbh0n6rY,1559
|
|
519
|
-
aip_agents/utils/langgraph/tool_managers/delegation_tool_manager.py,sha256=
|
|
565
|
+
aip_agents/utils/langgraph/tool_managers/delegation_tool_manager.py,sha256=wA0HVFCvo-IPzUSMGMJcPDIx_PSq37zvP3mQwimPhRA,45356
|
|
520
566
|
aip_agents/utils/langgraph/tool_managers/delegation_tool_manager.pyi,sha256=EKHSXUcA3Kv1HrLjbn8yA5OxOj5leN7-og-ckLpzB_c,2990
|
|
521
567
|
aip_agents/utils/metadata/__init__.py,sha256=D9RwBkLNejVvKHwzauXZACECTt2wN4qTQvJLUEoWhlE,749
|
|
522
568
|
aip_agents/utils/metadata/__init__.pyi,sha256=k-n5231rujm3t1j4_zz0-KF7JcUVPV4EEPDRVev9G74,634
|
|
@@ -560,7 +606,7 @@ aip_agents/utils/pii/pii_helper.py,sha256=8QGVC9lb7dic_vSfLDUaDvqm45BUbYyPeQTVva
|
|
|
560
606
|
aip_agents/utils/pii/pii_helper.pyi,sha256=wEgOasJxwKObtQ9Cb1UsiyIaqq2JUYmdRwOZR9PnIjA,3017
|
|
561
607
|
aip_agents/utils/pii/uuid_deanonymizer_mapping.py,sha256=X9zeX1bhb3rlCc8P5QnbHCILx2AIhGmZwjsjh_2G4ZQ,7543
|
|
562
608
|
aip_agents/utils/pii/uuid_deanonymizer_mapping.pyi,sha256=6H1xRV2Nr0LpP5K6fbz2uCobehTpM2626v8kiOd9W9Y,3157
|
|
563
|
-
aip_agents_binary-0.
|
|
564
|
-
aip_agents_binary-0.
|
|
565
|
-
aip_agents_binary-0.
|
|
566
|
-
aip_agents_binary-0.
|
|
609
|
+
aip_agents_binary-0.6.1.dist-info/METADATA,sha256=YP2lsKKsd4vrjc3HJ1cr3srb7v-ere4-wZdg7MY_rQM,23055
|
|
610
|
+
aip_agents_binary-0.6.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
611
|
+
aip_agents_binary-0.6.1.dist-info/top_level.txt,sha256=PEz8vcwC1bH4UrkhF0LkIYCNfXGWZUHdSklbvkBe25E,11
|
|
612
|
+
aip_agents_binary-0.6.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|