agentex-sdk 0.4.19__py3-none-any.whl → 0.4.20__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.
Files changed (129) hide show
  1. agentex/__init__.py +0 -1
  2. agentex/_utils/_typing.py +3 -1
  3. agentex/_version.py +1 -1
  4. agentex/lib/adk/__init__.py +3 -0
  5. agentex/lib/adk/_modules/acp.py +3 -1
  6. agentex/lib/adk/_modules/agent_task_tracker.py +3 -1
  7. agentex/lib/adk/_modules/agents.py +3 -1
  8. agentex/lib/adk/_modules/events.py +3 -1
  9. agentex/lib/adk/_modules/messages.py +3 -1
  10. agentex/lib/adk/_modules/state.py +3 -1
  11. agentex/lib/adk/_modules/streaming.py +3 -1
  12. agentex/lib/adk/_modules/tasks.py +4 -2
  13. agentex/lib/adk/_modules/tracing.py +3 -1
  14. agentex/lib/adk/providers/__init__.py +2 -2
  15. agentex/lib/adk/providers/_modules/litellm.py +10 -11
  16. agentex/lib/adk/providers/_modules/openai.py +27 -28
  17. agentex/lib/adk/providers/_modules/sgp.py +5 -6
  18. agentex/lib/adk/utils/_modules/client.py +4 -1
  19. agentex/lib/adk/utils/_modules/templating.py +5 -6
  20. agentex/lib/cli/commands/agents.py +21 -21
  21. agentex/lib/cli/commands/init.py +3 -3
  22. agentex/lib/cli/commands/main.py +3 -3
  23. agentex/lib/cli/commands/secrets.py +10 -10
  24. agentex/lib/cli/commands/tasks.py +26 -28
  25. agentex/lib/cli/commands/uv.py +1 -1
  26. agentex/lib/cli/debug/__init__.py +1 -1
  27. agentex/lib/cli/debug/debug_config.py +1 -2
  28. agentex/lib/cli/debug/debug_handlers.py +6 -4
  29. agentex/lib/cli/handlers/agent_handlers.py +15 -16
  30. agentex/lib/cli/handlers/cleanup_handlers.py +1 -1
  31. agentex/lib/cli/handlers/deploy_handlers.py +20 -39
  32. agentex/lib/cli/handlers/run_handlers.py +13 -16
  33. agentex/lib/cli/handlers/secret_handlers.py +25 -25
  34. agentex/lib/cli/templates/temporal/project/acp.py.j2 +11 -8
  35. agentex/lib/cli/utils/auth_utils.py +3 -2
  36. agentex/lib/cli/utils/credential_utils.py +1 -1
  37. agentex/lib/cli/utils/kubectl_utils.py +3 -3
  38. agentex/lib/cli/utils/kubernetes_secrets_utils.py +4 -4
  39. agentex/lib/cli/utils/path_utils.py +2 -2
  40. agentex/lib/core/adapters/llm/adapter_litellm.py +9 -4
  41. agentex/lib/core/adapters/llm/adapter_sgp.py +10 -7
  42. agentex/lib/core/adapters/llm/port.py +1 -1
  43. agentex/lib/core/adapters/streams/adapter_redis.py +7 -4
  44. agentex/lib/core/adapters/streams/port.py +1 -1
  45. agentex/lib/core/clients/temporal/temporal_client.py +34 -34
  46. agentex/lib/core/clients/temporal/types.py +1 -1
  47. agentex/lib/core/clients/temporal/utils.py +9 -12
  48. agentex/lib/core/services/adk/acp/acp.py +6 -6
  49. agentex/lib/core/services/adk/agent_task_tracker.py +1 -1
  50. agentex/lib/core/services/adk/agents.py +1 -1
  51. agentex/lib/core/services/adk/events.py +1 -1
  52. agentex/lib/core/services/adk/messages.py +5 -6
  53. agentex/lib/core/services/adk/providers/litellm.py +10 -10
  54. agentex/lib/core/services/adk/providers/openai.py +75 -43
  55. agentex/lib/core/services/adk/providers/sgp.py +3 -3
  56. agentex/lib/core/services/adk/state.py +5 -1
  57. agentex/lib/core/services/adk/streaming.py +19 -19
  58. agentex/lib/core/services/adk/tasks.py +8 -2
  59. agentex/lib/core/services/adk/tracing.py +3 -2
  60. agentex/lib/core/services/adk/utils/templating.py +4 -2
  61. agentex/lib/core/temporal/activities/__init__.py +27 -27
  62. agentex/lib/core/temporal/activities/activity_helpers.py +1 -1
  63. agentex/lib/core/temporal/activities/adk/acp/acp_activities.py +4 -4
  64. agentex/lib/core/temporal/activities/adk/agent_task_tracker_activities.py +1 -1
  65. agentex/lib/core/temporal/activities/adk/agents_activities.py +2 -2
  66. agentex/lib/core/temporal/activities/adk/events_activities.py +1 -1
  67. agentex/lib/core/temporal/activities/adk/messages_activities.py +3 -3
  68. agentex/lib/core/temporal/activities/adk/providers/litellm_activities.py +4 -4
  69. agentex/lib/core/temporal/activities/adk/providers/sgp_activities.py +1 -1
  70. agentex/lib/core/temporal/activities/adk/state_activities.py +1 -1
  71. agentex/lib/core/temporal/activities/adk/streaming_activities.py +3 -3
  72. agentex/lib/core/temporal/activities/adk/tasks_activities.py +2 -2
  73. agentex/lib/core/temporal/activities/adk/tracing_activities.py +1 -1
  74. agentex/lib/core/temporal/activities/adk/utils/templating_activities.py +1 -1
  75. agentex/lib/core/temporal/services/temporal_task_service.py +7 -7
  76. agentex/lib/core/temporal/workers/worker.py +31 -40
  77. agentex/lib/core/temporal/workflows/workflow.py +2 -2
  78. agentex/lib/core/tracing/__init__.py +2 -2
  79. agentex/lib/core/tracing/processors/agentex_tracing_processor.py +6 -6
  80. agentex/lib/core/tracing/processors/sgp_tracing_processor.py +16 -16
  81. agentex/lib/core/tracing/processors/tracing_processor_interface.py +1 -1
  82. agentex/lib/core/tracing/trace.py +7 -7
  83. agentex/lib/core/tracing/tracer.py +2 -2
  84. agentex/lib/core/tracing/tracing_processor_manager.py +43 -13
  85. agentex/lib/environment_variables.py +4 -4
  86. agentex/lib/sdk/config/agent_config.py +2 -2
  87. agentex/lib/sdk/config/agent_manifest.py +8 -8
  88. agentex/lib/sdk/config/project_config.py +6 -6
  89. agentex/lib/sdk/config/validation.py +2 -2
  90. agentex/lib/sdk/fastacp/base/base_acp_server.py +16 -16
  91. agentex/lib/sdk/fastacp/fastacp.py +14 -15
  92. agentex/lib/sdk/fastacp/impl/agentic_base_acp.py +4 -5
  93. agentex/lib/sdk/fastacp/impl/sync_acp.py +7 -7
  94. agentex/lib/sdk/fastacp/impl/temporal_acp.py +28 -19
  95. agentex/lib/sdk/fastacp/tests/conftest.py +18 -16
  96. agentex/lib/sdk/fastacp/tests/run_tests.py +1 -1
  97. agentex/lib/sdk/fastacp/tests/test_base_acp_server.py +4 -4
  98. agentex/lib/sdk/fastacp/tests/test_fastacp_factory.py +8 -8
  99. agentex/lib/sdk/fastacp/tests/test_integration.py +15 -14
  100. agentex/lib/sdk/state_machine/__init__.py +1 -1
  101. agentex/lib/sdk/state_machine/noop_workflow.py +5 -3
  102. agentex/lib/sdk/state_machine/state_machine.py +18 -12
  103. agentex/lib/sdk/utils/messages.py +5 -5
  104. agentex/lib/types/acp.py +2 -2
  105. agentex/lib/types/agent_configs.py +1 -1
  106. agentex/lib/types/converters.py +4 -2
  107. agentex/lib/types/credentials.py +1 -1
  108. agentex/lib/types/fastacp.py +4 -5
  109. agentex/lib/types/tracing.py +1 -1
  110. agentex/lib/utils/completions.py +5 -5
  111. agentex/lib/utils/console.py +1 -1
  112. agentex/lib/utils/debug.py +10 -5
  113. agentex/lib/utils/dev_tools/async_messages.py +11 -12
  114. agentex/lib/utils/iterables.py +1 -1
  115. agentex/lib/utils/json_schema.py +4 -4
  116. agentex/lib/utils/logging.py +7 -7
  117. agentex/lib/utils/mcp.py +1 -0
  118. agentex/lib/utils/model_utils.py +4 -5
  119. agentex/lib/utils/registration.py +5 -4
  120. agentex/resources/agents.py +11 -4
  121. agentex/types/agent_rpc_response.py +3 -3
  122. agentex/types/data_content.py +1 -1
  123. agentex/types/tool_request_content.py +1 -1
  124. agentex/types/tool_response_content.py +0 -1
  125. {agentex_sdk-0.4.19.dist-info → agentex_sdk-0.4.20.dist-info}/METADATA +1 -1
  126. {agentex_sdk-0.4.19.dist-info → agentex_sdk-0.4.20.dist-info}/RECORD +129 -129
  127. {agentex_sdk-0.4.19.dist-info → agentex_sdk-0.4.20.dist-info}/WHEEL +0 -0
  128. {agentex_sdk-0.4.19.dist-info → agentex_sdk-0.4.20.dist-info}/entry_points.txt +0 -0
  129. {agentex_sdk-0.4.19.dist-info → agentex_sdk-0.4.20.dist-info}/licenses/LICENSE +0 -0
@@ -1,4 +1,4 @@
1
- agentex/__init__.py,sha256=j0BX5IfIjYaWdXQC7P4bh1Ev2-0bJe4Uh7IbqG551ng,2667
1
+ agentex/__init__.py,sha256=TiRXq2YgdvPiMxbk3V_25BsuhvVEmPvBheW3c0DGgKU,2666
2
2
  agentex/_base_client.py,sha256=Y_EaL4x9g7EsRADVD6vJ303tLO0iyB3K5SbTSvKCS2k,67048
3
3
  agentex/_client.py,sha256=Fae6qw42eIjFaENpQ5nrq5SyW1310UoHZGNrG-DSa_g,20493
4
4
  agentex/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
@@ -11,7 +11,7 @@ agentex/_resource.py,sha256=S1t7wmR5WUvoDIhZjo_x-E7uoTJBynJ3d8tPJMQYdjw,1106
11
11
  agentex/_response.py,sha256=Tb9zazsnemO2rTxWtBjAD5WBqlhli5ZaXGbiKgdu5DE,28794
12
12
  agentex/_streaming.py,sha256=FNGJExRCF-vTRUZHFKUfoAWFhDGOB3XbioVCF37Jr7E,10104
13
13
  agentex/_types.py,sha256=lO491FSd7vM_uBp7-TvItbauEAH8SsEPYcyNO_5lKGM,7297
14
- agentex/_version.py,sha256=6BcFOkutui_Zk8paug6PcP6bW9nEWC3lUJBtRbIwUOM,159
14
+ agentex/_version.py,sha256=wh-98Xlko1T5mcaCEc0tEZM_lw-nJOnx8SloXc9HZE8,159
15
15
  agentex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  agentex/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
17
17
  agentex/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
@@ -23,49 +23,49 @@ agentex/_utils/_resources_proxy.py,sha256=W1Rrg7LVZHLIUq40nOfgQv6orKG16CKqDRKHia
23
23
  agentex/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
24
24
  agentex/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
25
25
  agentex/_utils/_transform.py,sha256=i_U4R82RtQJtKKCriwFqmfcWjtwmmsiiF1AEXKQ_OPo,15957
26
- agentex/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
26
+ agentex/_utils/_typing.py,sha256=fb420NYkXitEaod2CiEH-hCtzG1z9WKUQiFtuukHtr4,4967
27
27
  agentex/_utils/_utils.py,sha256=D2QE7mVPNEJzaB50u8rvDQAUDS5jx7JoeFD7zdj-TeI,12231
28
28
  agentex/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
29
29
  agentex/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
- agentex/lib/environment_variables.py,sha256=3vnoPoG3UyVAnPV8bwa93CFkapdr0DuND85oMAJzkZE,3389
30
+ agentex/lib/environment_variables.py,sha256=Ic36rWwEUoOmqbwBRLY1NpEHxqyT8y7arEwx5uNqI1Y,3401
31
31
  agentex/lib/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
- agentex/lib/adk/__init__.py,sha256=-PpVfEvYr_HD7TnxUWU8RCW2OnxfwpPxTW97dKTnqvI,1082
32
+ agentex/lib/adk/__init__.py,sha256=6qv_lmJK5n-MPDQyYpeNvEMJxfdIxVAUcb_2LohJHmM,1210
33
33
  agentex/lib/adk/_modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- agentex/lib/adk/_modules/acp.py,sha256=_LweV8BoIyQhqL06Xie_9t_0jcbZakomb24MgojYneo,11179
35
- agentex/lib/adk/_modules/agent_task_tracker.py,sha256=fXMDs1zgAC6n8EmWTU5_trs79EGVBCEPxd5eBOZmdE0,7022
36
- agentex/lib/adk/_modules/agents.py,sha256=VlT_PXnyb3Knh-nx1rfflD9N6gjp5O0_6Z_QL5SCThU,2788
37
- agentex/lib/adk/_modules/events.py,sha256=RHQZ4ircC60zdm1chRzo3cdt7LNqDoJfPLNJXEz4BH0,5262
38
- agentex/lib/adk/_modules/messages.py,sha256=1LxexTBif7HXltN3b1u6A5upXuXuq6ZkFAdIrbSv2zo,10636
39
- agentex/lib/adk/_modules/state.py,sha256=z2Zh1JB3qJo-4BsVABnFZIeDWWKQDbcOw6itl0hU_E4,10730
40
- agentex/lib/adk/_modules/streaming.py,sha256=lbRQBmySsx63wKiHeR5ueNW_6DJckCNStQ0wQynC4r4,3095
41
- agentex/lib/adk/_modules/tasks.py,sha256=q3IBdnwVXrv9Ht7z4jkm8RWOpzU9n3VKgrX3FTNXSZ8,4220
42
- agentex/lib/adk/_modules/tracing.py,sha256=A_kH332f_DFVfMftPHGEg3oi4RFcwDXohg7xtvWUuTY,7344
43
- agentex/lib/adk/providers/__init__.py,sha256=KPWC8AYsl8lPgpFoRXlGwzozb-peKLAzV_DcTWXBsz4,306
34
+ agentex/lib/adk/_modules/acp.py,sha256=hkcqQPN9Rkcl_sxj4N63_25ijC_4VDKfJFa8D-mJ8h0,11305
35
+ agentex/lib/adk/_modules/agent_task_tracker.py,sha256=tAsgD9z0fBhLPIz2mByIQ5OvA3QdH_n2Aoyoskvf_G4,7148
36
+ agentex/lib/adk/_modules/agents.py,sha256=b3RLIx8pKAt0TpX3t7dyXzBHUjuGeapBSjP84zrJPMk,2914
37
+ agentex/lib/adk/_modules/events.py,sha256=ZbTdxoAVimdYAjxpd3dvDl_eZPKYl7xDhlKfQFZbFSA,5388
38
+ agentex/lib/adk/_modules/messages.py,sha256=zoIfhwQjOWz27BRgsQ0vwJ0LcNh85Cc4li5gMfUup2c,10762
39
+ agentex/lib/adk/_modules/state.py,sha256=ikLwDs7KaC3He5WNoFKc8rtUwZA17adzhjW0NMqkdbE,10856
40
+ agentex/lib/adk/_modules/streaming.py,sha256=zWwEHzOXplMQGalrtomLk01BzQXC1nV7nwx7m8qiVF0,3221
41
+ agentex/lib/adk/_modules/tasks.py,sha256=vXCQrfio9bt6CW6BlKdZGPEB7bXCEIltTDw4oSDFjTE,4376
42
+ agentex/lib/adk/_modules/tracing.py,sha256=sdFdXdXWyTWxuyeK1GwN_tm3IW9moaXVLqKWV1y7JGA,7470
43
+ agentex/lib/adk/providers/__init__.py,sha256=bOS-D_lXV3QXRtGKrUvsYb2ZAcZG51ZAtHdfiHgYN-M,306
44
44
  agentex/lib/adk/providers/_modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
- agentex/lib/adk/providers/_modules/litellm.py,sha256=11LxGsverxarRgxoP7Ni17GOCZwSlQlxHBz7ksToEkc,9486
46
- agentex/lib/adk/providers/_modules/openai.py,sha256=6kP-5G_1syv7ksjZoxhrJ0wM1lD1dXJRVrse7FN0ygY,22240
47
- agentex/lib/adk/providers/_modules/sgp.py,sha256=QszUPyeGBODfI5maYvlzErD87PsMsX6vrfC7n65WNjE,3224
45
+ agentex/lib/adk/providers/_modules/litellm.py,sha256=ykJkRXxW4MPVvoESzChBsq4AvinfonAQ9VACsca_sKM,9453
46
+ agentex/lib/adk/providers/_modules/openai.py,sha256=8ATUdit8JiZebb5v5aNgxmbv4DgG3eSlVO-sZ2ZKoMA,22519
47
+ agentex/lib/adk/providers/_modules/sgp.py,sha256=mRfRS2tKlZS9wobZwsHXvLkCASn6Fqyqwi7MgQBHzdQ,3191
48
48
  agentex/lib/adk/utils/__init__.py,sha256=7f6ayV0_fqyw5cwzVANNcZWGJZ-vrrYtZ0qi7KKBRFs,130
49
49
  agentex/lib/adk/utils/_modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
- agentex/lib/adk/utils/_modules/client.py,sha256=zMBYsPr2zXpSynF2W_5SKOpALtXvS0cTNdcJX93ce1I,974
51
- agentex/lib/adk/utils/_modules/templating.py,sha256=wgjkE4uC1gsArK-exyxOOZwp5Yu7ePqviZuyTDlP9m0,3595
50
+ agentex/lib/adk/utils/_modules/client.py,sha256=UYSTThuZoX3nqF8iuRmRI8uPO00NrYgC_6BGX6HA7Js,1017
51
+ agentex/lib/adk/utils/_modules/templating.py,sha256=IhfJy1erU9PagYzI5WYFgm0sdHGuwLQ6ngmpILXRtBI,3562
52
52
  agentex/lib/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
53
  agentex/lib/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- agentex/lib/cli/commands/agents.py,sha256=fmsZ9Cd2B-BcqUE0lLPeGI1mH8Tssq5lLgOuMT93pt4,14003
55
- agentex/lib/cli/commands/init.py,sha256=NSWk1zIZXn8dTn1_yyAstt9znqTyNLX8LwIv_LVg1kM,8199
56
- agentex/lib/cli/commands/main.py,sha256=aDn9xJIIQQD33v3caET_NX-8eBxoWC3QfZGMUgjeGN8,1093
57
- agentex/lib/cli/commands/secrets.py,sha256=cVtsqyGGieBVM4dKkbJROmzR_NJRODFngcEbi1Nc92A,5604
58
- agentex/lib/cli/commands/tasks.py,sha256=9ARR0VgM2ZZXSFDlMiA_E9RDL2V7Piipp8Fna_OBrKQ,3652
59
- agentex/lib/cli/commands/uv.py,sha256=n6nk2F2gPUXrvWOljSN06Y5bOEnhaZH4rulproAJktA,3553
60
- agentex/lib/cli/debug/__init__.py,sha256=dt_NjaWesD2M5BqtTKswWc23PGA_dC0uR2m61JP_xIc,378
61
- agentex/lib/cli/debug/debug_config.py,sha256=Gl0rI1WUPwhehyDC0EdLo7S8q9hlBy41ZIu3NBUm6QQ,3415
62
- agentex/lib/cli/debug/debug_handlers.py,sha256=i2Og0v5MPKIxG0uMZIp4NpmCpAro23t7PLCU4d7EKag,5684
54
+ agentex/lib/cli/commands/agents.py,sha256=cDJZskMtOckZZwDiaS-Tk15aTvPz6e8qeIzU7G-KOMs,14017
55
+ agentex/lib/cli/commands/init.py,sha256=-vzHR6wkSYxLVTHCOh35EdTPwVy5hv2yi-zI6W_tcAA,8215
56
+ agentex/lib/cli/commands/main.py,sha256=sDiX2N9OcdBaTc8pO3A9sCdlCUNSFWmeIDllye-7kQ0,1093
57
+ agentex/lib/cli/commands/secrets.py,sha256=dEwXS1WDD8nijiLbB5Xa1bhobzlMw2ugAiHMoS3Q8qE,5604
58
+ agentex/lib/cli/commands/tasks.py,sha256=VZ3W8_WCUoDNoHB91sq8a--spmsRyLVDgRIuYsgKibQ,3608
59
+ agentex/lib/cli/commands/uv.py,sha256=Djcwx5HS5XH6MvMjH8CjpFT7Husmu6ctdL7olZvAF_0,3553
60
+ agentex/lib/cli/debug/__init__.py,sha256=-ZF2Hg8tyREDjPTefhJG_KesX4DA1gZue89pzf4s6s8,378
61
+ agentex/lib/cli/debug/debug_config.py,sha256=XlMyq7jP9NPAncO9Saob1Ga7dn-6DhmJ86iKAlQC9WY,3388
62
+ agentex/lib/cli/debug/debug_handlers.py,sha256=CZ8i5Xf50IQOeMvNfNgE5AgphkxnPo4jf2VbMt2jDEE,5690
63
63
  agentex/lib/cli/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
- agentex/lib/cli/handlers/agent_handlers.py,sha256=iVZ-4TSQJuq7XpPBYjYIN76M33XwxDjQTuNwTzzynec,5573
65
- agentex/lib/cli/handlers/cleanup_handlers.py,sha256=V1V0zeErOUGTgCQqjyUl6CWtzGjFW878uzFaLOQJEyQ,7073
66
- agentex/lib/cli/handlers/deploy_handlers.py,sha256=VFEUXaA6IZRfrXBiUiHr-2RLePxTixE5a3bx5U6M2As,16447
67
- agentex/lib/cli/handlers/run_handlers.py,sha256=TMelCWTwFxUJJJ7At3zG-cXTn2mBmK1ZJuJ63Ero6xs,15396
68
- agentex/lib/cli/handlers/secret_handlers.py,sha256=VfAdAQovW9tG36Xgk_gGIGwTyFMxR3P6xc7fmAviNA8,24719
64
+ agentex/lib/cli/handlers/agent_handlers.py,sha256=xy2kXo7poV270yFLyqXNbZ79d_sq_vl5JAs93okYMHY,5604
65
+ agentex/lib/cli/handlers/cleanup_handlers.py,sha256=T6ekNCBr2FV19r4jZiKSeoheQWihy2H1Q6fvWUVeUiw,7073
66
+ agentex/lib/cli/handlers/deploy_handlers.py,sha256=ca1WaLiY_1IzUN2JNay8noW7MaVk66Zow73vwEzFs20,16215
67
+ agentex/lib/cli/handlers/run_handlers.py,sha256=nSG9YuA6XOKP3uUIWK0_eC_yNmbaLuLB7uBlFqiSZ7g,15576
68
+ agentex/lib/cli/handlers/secret_handlers.py,sha256=hozcJJwWfECFtv_SdQnThcrhnKsiBm3y1jG1MqxVcoc,24851
69
69
  agentex/lib/cli/templates/default/.dockerignore.j2,sha256=hweGFxw5eDZYsb5EnRHpv27o9M1HF2PEWOxqsfBBcAE,320
70
70
  agentex/lib/cli/templates/default/Dockerfile-uv.j2,sha256=9-xbz3mh5yGuSxtQ6FRltzY45OyUzvi1ZmlfwOioK-M,1085
71
71
  agentex/lib/cli/templates/default/Dockerfile.j2,sha256=Q-8T9mid_DfgZlQd6JFZKphdDngEsTLlqDvJtEvU_7k,1092
@@ -95,143 +95,143 @@ agentex/lib/cli/templates/temporal/environments.yaml.j2,sha256=zu7-nGRt_LF3qmWFx
95
95
  agentex/lib/cli/templates/temporal/manifest.yaml.j2,sha256=Ic2CjQ-4tNCQhJ3phhAUj7a3xzijXegZ976glgj0-sg,4569
96
96
  agentex/lib/cli/templates/temporal/pyproject.toml.j2,sha256=MoR1g6KnGOQrXWOXhFKMw561kgpxy0tdom0KLtQe8A8,548
97
97
  agentex/lib/cli/templates/temporal/requirements.txt.j2,sha256=iTmO-z8qFkUa1jTctFCs0WYuq7Sqi6VNQAwATakh2fQ,94
98
- agentex/lib/cli/templates/temporal/project/acp.py.j2,sha256=Ha5oBaGT1WC93TEBfWMM7OtbmAYOF2t3PjY6uOL6mJE,2386
98
+ agentex/lib/cli/templates/temporal/project/acp.py.j2,sha256=dz51AJqqXAbqa0TSwRS6PXU0HwqllvYeCGYEreU9zSM,2472
99
99
  agentex/lib/cli/templates/temporal/project/activities.py.j2,sha256=kRDCMs5YYY24K88WuoPBzSdLQdLILVlAbud0G5ULJvU,2304
100
100
  agentex/lib/cli/templates/temporal/project/run_worker.py.j2,sha256=_JeknhHcE77GwVdJAWRTdgREJQXGTVOI2HDfh4QNZSw,1065
101
101
  agentex/lib/cli/templates/temporal/project/workflow.py.j2,sha256=VPnHnzr09i5y68vCOIJ8wTrc8KVHoDp5WooQew0GiWg,3210
102
102
  agentex/lib/cli/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
- agentex/lib/cli/utils/auth_utils.py,sha256=FaF1nDh1swxCBeBO9aOk20ewkWDg7UjQGHT7nqZEBn0,1876
103
+ agentex/lib/cli/utils/auth_utils.py,sha256=axFuA6qwAFlTfYuN4J45UfR82UP11sa5nayQQ_YxDW0,1893
104
104
  agentex/lib/cli/utils/cli_utils.py,sha256=vOVL7RBbzyiMtezNPEjPTeYMSVsarv5nx5SOxigCoVs,410
105
- agentex/lib/cli/utils/credential_utils.py,sha256=EzI_Wdvr2lt9uf9sNML1RTkzqIv6LjpB_dYlCenSNTA,3448
105
+ agentex/lib/cli/utils/credential_utils.py,sha256=EnO2wCq7gSsRHrqV8iQJ9hBNT0cCZxaJyzVYF4bb_bE,3448
106
106
  agentex/lib/cli/utils/exceptions.py,sha256=ZhQZzciroj4zeYlL0TWmoQ6oeLBcAowGhCGMP7Ac_lA,161
107
- agentex/lib/cli/utils/kubectl_utils.py,sha256=ucI0z-Zn-sFwk84MKfCgfX9CLZxlLSx242W_0MsyYxU,4907
108
- agentex/lib/cli/utils/kubernetes_secrets_utils.py,sha256=uKsUvKvHfRGvNxgRgOFW0MJ2RyA9QJJjPQ1QA-qcaZk,6978
109
- agentex/lib/cli/utils/path_utils.py,sha256=WN5rZCdb9SIrtN-P6QqIQuaH54HgqQ3fUMUnaIYxT0I,5747
107
+ agentex/lib/cli/utils/kubectl_utils.py,sha256=jzFhIgYF0aQHXoHh9vScfCI24XEP8Zk7ziJ_lQYEo-U,4930
108
+ agentex/lib/cli/utils/kubernetes_secrets_utils.py,sha256=UzoWsCG1hTMUuibsPIykfDwUj_2IK1pLbq3R5MHS7OM,7034
109
+ agentex/lib/cli/utils/path_utils.py,sha256=0-fmVLMUj_UvknkAAhh8Mo9ZhKk347UxvD_0zA2-BiA,5747
110
110
  agentex/lib/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
111
  agentex/lib/core/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
112
  agentex/lib/core/adapters/llm/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
113
- agentex/lib/core/adapters/llm/adapter_litellm.py,sha256=4eEGRWRXFMf610UvJxZWy1tBSqoJMTTW5Dty1cuQA_8,1733
114
- agentex/lib/core/adapters/llm/adapter_sgp.py,sha256=ZYxQcpwGsEDt6EkKLTDIOLtohoq-iHll_srbb4KURSs,2176
115
- agentex/lib/core/adapters/llm/port.py,sha256=0TWCLGSm_RHcjQN4ppXEHAG0WO0S37s7iWKEsYhddVY,704
116
- agentex/lib/core/adapters/streams/adapter_redis.py,sha256=Q7mFSAcAvROsVCMD_K9bwmTPPIqNDQYNj-2exCJ-jUw,4280
117
- agentex/lib/core/adapters/streams/port.py,sha256=cVIjbQYatHFceYecq87poH4xOxFWIMkXH5tyb9BbrsY,1225
113
+ agentex/lib/core/adapters/llm/adapter_litellm.py,sha256=HNGjUvXgD0_iqYzuQGOuJvoMX2bC6rMQU2ZBP75IaFA,1839
114
+ agentex/lib/core/adapters/llm/adapter_sgp.py,sha256=GQ8A1P6rV9u0qsE6dij9uU2K9zuLZtjX5e7tE9PS_dM,2254
115
+ agentex/lib/core/adapters/llm/port.py,sha256=3WShJP_MfHUJ-bnZkmu2o0U-RELlC5OiOwWoirwRepo,704
116
+ agentex/lib/core/adapters/streams/adapter_redis.py,sha256=zOL9bD-c8UKJsXTe17BRrwln1yHaOhzYqqcggOp_lyY,4332
117
+ agentex/lib/core/adapters/streams/port.py,sha256=3ZiG_tya_cnmuczWwkdlucpIJ5eVjWmhC6rR7Htvndk,1225
118
118
  agentex/lib/core/clients/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
119
119
  agentex/lib/core/clients/temporal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
- agentex/lib/core/clients/temporal/temporal_client.py,sha256=rNQMT_1Yjfaoarp2wYO88GJbV4UCmGOxioOo6Jljy7Y,6549
121
- agentex/lib/core/clients/temporal/types.py,sha256=tewjVflWPzSuLqg8Z_ewXhSFI7q0EoF6_s-p2mD2-zM,1334
122
- agentex/lib/core/clients/temporal/utils.py,sha256=rGEVS8hpviOGE78GViiK0YZvUO1SsCieDrNd0fzCCHY,3221
120
+ agentex/lib/core/clients/temporal/temporal_client.py,sha256=D24RSs_AXvHGTrdF8zR4BQPa1X1EIGS2j-nwJv8w0y4,6823
121
+ agentex/lib/core/clients/temporal/types.py,sha256=B5fKLH5QQvqVYIZYZGU37vrOYyaytqAdPEnU4bAg2Ak,1334
122
+ agentex/lib/core/clients/temporal/utils.py,sha256=RZ1MqrGX--jdANRQRNno-wqjMLg_xuE-nrMssHDy6gQ,3180
123
123
  agentex/lib/core/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
124
  agentex/lib/core/services/adk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
- agentex/lib/core/services/adk/agent_task_tracker.py,sha256=7HHxzTezx0FEmUlIcWusoXT0D91QVeggOKowIA919gI,2897
126
- agentex/lib/core/services/adk/agents.py,sha256=MVklI4Ht8j8EAO18-0reLFRr6S5OIdEIymB1mU8FnKE,1446
127
- agentex/lib/core/services/adk/events.py,sha256=gzhEfodEKk2bW5e1RJdrk2MW316U5VWdxMynhtFWgTA,1949
128
- agentex/lib/core/services/adk/messages.py,sha256=pqIYaY11tmGOD8OnU3qoy5lk82AI1FgW5ShmfxidG_I,6042
129
- agentex/lib/core/services/adk/state.py,sha256=O4hF7dj-uQP5VVeHmx37m36rmIlOwfQ2pL2ROndq7Zg,3830
130
- agentex/lib/core/services/adk/streaming.py,sha256=keZyy7CixM2_3tf2THv-X4gGOOSAk0mEKBk-WReBqJE,12406
131
- agentex/lib/core/services/adk/tasks.py,sha256=XEX0u4skq81Fn-gjTzSE_-Iv_mKySZHchpotxAsnJwg,2618
132
- agentex/lib/core/services/adk/tracing.py,sha256=w4mnIoq5m5iwlkDN_NOUjhi6hUpD958cYn1QR6hFgB8,1156
125
+ agentex/lib/core/services/adk/agent_task_tracker.py,sha256=qkiEEKpbHIaKf6t-iP8Tn5jSDCbRWa5rEuSFD6y4u8Y,2897
126
+ agentex/lib/core/services/adk/agents.py,sha256=FTCP1dUkKok3sUhN76c2aOhBjC5DR5WjjEkiUrc3gZI,1446
127
+ agentex/lib/core/services/adk/events.py,sha256=JOygBMExMfMoi7E4leqBpyv8LYJp5ssVNL3vzAgEffw,1949
128
+ agentex/lib/core/services/adk/messages.py,sha256=jPekJDw11QpW09YMRddroZ0HTnz5E4o2tQ4BoLpYOms,5959
129
+ agentex/lib/core/services/adk/state.py,sha256=PDo8oRN7d93COVIWswVEzrdIjBqpjqlFgEMoSjnk8iE,4003
130
+ agentex/lib/core/services/adk/streaming.py,sha256=pqQnXp6IruzwjSupE_wseTngUaYMW-UrbEWvoz58Y5w,12461
131
+ agentex/lib/core/services/adk/tasks.py,sha256=WBdNuVURk-cTAyioYbfmdggpSxhm1bd1TG2aSUNtPx4,2873
132
+ agentex/lib/core/services/adk/tracing.py,sha256=uWUy9dY6En7XY8O9QzlA9Yu_zcW1kFgX8KvlKb5hOck,1157
133
133
  agentex/lib/core/services/adk/acp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
134
- agentex/lib/core/services/adk/acp/acp.py,sha256=ONbGc8HWNCxv5IJaItY-fvDZIwlh3d4jSmH9GGQo7q8,10971
134
+ agentex/lib/core/services/adk/acp/acp.py,sha256=baMH0lL5OGvCJE2Sk97i03jtfoRNB3g7S6aOD42jEMI,10971
135
135
  agentex/lib/core/services/adk/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
- agentex/lib/core/services/adk/providers/litellm.py,sha256=EKzus_xohNW-85V5hwvd1WqUd3ebv2wc9vDIWO2t1Mw,10044
137
- agentex/lib/core/services/adk/providers/openai.py,sha256=pXbqSBPxvnOV_h3c-iaUXFgkmNRyu97C1xGIFMOw8zY,51832
138
- agentex/lib/core/services/adk/providers/sgp.py,sha256=9gm-sPNQ_OSTaBzL0onerKhokPk_ZHndaKNO-z16wyQ,3676
136
+ agentex/lib/core/services/adk/providers/litellm.py,sha256=Ha7t71sxEdhi32uSDN-WN_Gy8F075W_sCUpRvhODbLI,10044
137
+ agentex/lib/core/services/adk/providers/openai.py,sha256=fetbzsOKIALj0l7aIIij4mb7AUegdopom_AeIq0WRSk,53772
138
+ agentex/lib/core/services/adk/providers/sgp.py,sha256=biwoRD-ojUi1dpb9nHl1kJozO0PxqUpAwGysx-ZEnjw,3704
139
139
  agentex/lib/core/services/adk/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
- agentex/lib/core/services/adk/utils/templating.py,sha256=eaXSFq31Y9p5pRD6J6SL4QdTFtxy81dilbF2XXc2JYQ,1889
140
+ agentex/lib/core/services/adk/utils/templating.py,sha256=6Zv8XDhNfmE-xW307wzeQCLYqpVajR3IX8DSD2Hyc7c,2027
141
141
  agentex/lib/core/temporal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
- agentex/lib/core/temporal/activities/__init__.py,sha256=BWFKs8eFogUHvUyRwGNTpi3QA3KX78XegOzI4cCbZrs,7697
143
- agentex/lib/core/temporal/activities/activity_helpers.py,sha256=vvQv0rCyrIbnm2gFSQRgCIwIUlKf0jwmI15XEDTNz8A,1014
142
+ agentex/lib/core/temporal/activities/__init__.py,sha256=I_8diHgUuiak_QSCGxUQqS8_r4GgZ3wwtN-CIjO8XyE,7739
143
+ agentex/lib/core/temporal/activities/activity_helpers.py,sha256=zuXnprzHIv6Mqcc1CHZkWiD4EdvUOILl01nx5nMcEno,1014
144
144
  agentex/lib/core/temporal/activities/adk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
- agentex/lib/core/temporal/activities/adk/agent_task_tracker_activities.py,sha256=cqND3YrRybE9Li4fw-oLfTyKzcI9M0lGBhoCq37vThc,2668
146
- agentex/lib/core/temporal/activities/adk/agents_activities.py,sha256=q3PGgOLXvcEOs1bJaTT9TuEZIVhdmzGNNnDiOr7Wh5M,1004
147
- agentex/lib/core/temporal/activities/adk/events_activities.py,sha256=60ygWk1aNG8Qf2IcnatXK1h86ZT32WCYkUAyRiM_p4c,1532
148
- agentex/lib/core/temporal/activities/adk/messages_activities.py,sha256=fmiNOAt6Ov4nYzGGbkvDcSCMXPPTrsL66xSNud3_3RQ,3053
149
- agentex/lib/core/temporal/activities/adk/state_activities.py,sha256=2YtAz7C2GMfyZGdp8wje1TvYjFGttdbLNAm9xSIbESA,2590
150
- agentex/lib/core/temporal/activities/adk/streaming_activities.py,sha256=PEXeFU9mNHbGoF3-kk4HNS53NX_MfdwI7LKWBl3--4c,1048
151
- agentex/lib/core/temporal/activities/adk/tasks_activities.py,sha256=hQjdD-TfSzxsiW9eiJ5ZTvY0Ieu0tE950_Zk2PUVc9g,1442
152
- agentex/lib/core/temporal/activities/adk/tracing_activities.py,sha256=RF8nSBA9x6Ui7_MD9He5ljlH_xZduIhx_JUTEyKdCxA,1523
145
+ agentex/lib/core/temporal/activities/adk/agent_task_tracker_activities.py,sha256=WtGySZHLYl8pTIrLx4CJBXwKYFX7VrOWVeml3XhTBu8,2668
146
+ agentex/lib/core/temporal/activities/adk/agents_activities.py,sha256=SEPrYlRDXujbVDuZ0Qu5Rd6N7P254sBdxpvh2i5fYvM,1004
147
+ agentex/lib/core/temporal/activities/adk/events_activities.py,sha256=mNA2gVnL04s9hikiOcalSmE3mMc88j9Q6hMx_eKdf-U,1532
148
+ agentex/lib/core/temporal/activities/adk/messages_activities.py,sha256=9sJqEBgcHROH9Hq_bnTZVXaXTPpel25pKaubNOR0Afk,3053
149
+ agentex/lib/core/temporal/activities/adk/state_activities.py,sha256=Ij-_5bIZ2-jt-ZyBGjWB1jFL_yrbDa_bRPJEHK4xh_0,2590
150
+ agentex/lib/core/temporal/activities/adk/streaming_activities.py,sha256=iEGGTtpO97oks9UnFj2hC0x8Ofl-lv4MZ_GlWuVbRfk,1048
151
+ agentex/lib/core/temporal/activities/adk/tasks_activities.py,sha256=7KrIQ083Thaiha4aitLvnXuKsukX3A1O_sFikLwzsLg,1472
152
+ agentex/lib/core/temporal/activities/adk/tracing_activities.py,sha256=VfFwiQNE3vRwgWCOKQNxmBQF6iKNQyj-zQfQhrzrr3o,1523
153
153
  agentex/lib/core/temporal/activities/adk/acp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
154
- agentex/lib/core/temporal/activities/adk/acp/acp_activities.py,sha256=FrIs0g4BqB5NwyHmb-3Do_ugGWgLhQ3Uoud1E0BnD_E,3503
154
+ agentex/lib/core/temporal/activities/adk/acp/acp_activities.py,sha256=lc9d0OszPO4HrRgcJaLe-GnwZFrPV6ApPoqGOWNbk1c,3503
155
155
  agentex/lib/core/temporal/activities/adk/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
156
- agentex/lib/core/temporal/activities/adk/providers/litellm_activities.py,sha256=Ix92XZIQIbhf-_fOWkUZDxZ1UUCOF0kOwxbcRYBzBQA,2583
156
+ agentex/lib/core/temporal/activities/adk/providers/litellm_activities.py,sha256=6CGbeXSF5u3B-W8oWn3n5AqGbK0upq7myEqse-C92Uw,2583
157
157
  agentex/lib/core/temporal/activities/adk/providers/openai_activities.py,sha256=TLNMzli_AlJEvUL0DklceN0mjE9GiHH32AgJAbVw6hw,27587
158
- agentex/lib/core/temporal/activities/adk/providers/sgp_activities.py,sha256=C8n97mEhc3yFDgdejERDob9g5STfWgGoY-BmkQBH6Lg,1266
158
+ agentex/lib/core/temporal/activities/adk/providers/sgp_activities.py,sha256=Z7pm7QeYxdwvbUYtE60rFOONxS7dGc5Uqs1o30Za3_w,1266
159
159
  agentex/lib/core/temporal/activities/adk/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
160
- agentex/lib/core/temporal/activities/adk/utils/templating_activities.py,sha256=dX6wpcTKY_qWsm3uJV-XU5fQLqwWAhnjO83k8EK0N7o,1189
160
+ agentex/lib/core/temporal/activities/adk/utils/templating_activities.py,sha256=nZ3YAefduWY-UFF2gSgePexQILMLUHtjY3OFwr-4J0M,1189
161
161
  agentex/lib/core/temporal/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
- agentex/lib/core/temporal/services/temporal_task_service.py,sha256=TkeGtGI6uPy-j3lCoKC408e0NPADRqm76yJHMwSqbIk,2342
162
+ agentex/lib/core/temporal/services/temporal_task_service.py,sha256=W0L2GkSWwO2WZ8cWexBHWhUS1w_tZBbOZgajGmFA6F0,2310
163
163
  agentex/lib/core/temporal/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
164
  agentex/lib/core/temporal/types/workflow.py,sha256=o8lBUloI44NTYFfbA1BLgzUneyN7aLbt042Eq_9OKo8,89
165
165
  agentex/lib/core/temporal/workers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
166
- agentex/lib/core/temporal/workers/worker.py,sha256=tNG19QuNcY7tzEbeB1bU5-6grcGFN9Q73JO_x98nMvg,7953
167
- agentex/lib/core/temporal/workflows/workflow.py,sha256=VTS4nqwdJqqjIy6nTyvFLdAoBHnunO8-8rVY0Gx5_zo,723
168
- agentex/lib/core/tracing/__init__.py,sha256=3dLjXGTwAJxi_xxwdh8Mt04pdLyzN9VxAl8XHmV70Ak,229
169
- agentex/lib/core/tracing/trace.py,sha256=45Nn0Z97kC_9XNyb9N8IWUFo0OIdb7dDZShhgOTGJB0,8952
170
- agentex/lib/core/tracing/tracer.py,sha256=nznv2deDCKmhiFv5kCfExvePtVuEKpb3LfDWTQrFl_g,1846
171
- agentex/lib/core/tracing/tracing_processor_manager.py,sha256=KrJb7UfKBWnm9o4pMYFfgS4HtLnG7D_5zZhqS3ZDuRA,2588
172
- agentex/lib/core/tracing/processors/agentex_tracing_processor.py,sha256=zauHCJf1WCirgMHzEEP7wMthpWlaZCOFnYPlbLzUpMk,3643
173
- agentex/lib/core/tracing/processors/sgp_tracing_processor.py,sha256=HDt6Z5zbm1YRtXAooHHVpTTrdDGWD6Mo73hfI1Q8IBo,3788
174
- agentex/lib/core/tracing/processors/tracing_processor_interface.py,sha256=wxnBA_hnOUFsABVUnVz2aWI3rv5bZpXYR4H62g5TyVw,861
166
+ agentex/lib/core/temporal/workers/worker.py,sha256=_ffvNWFXHDMWW4KN40OI_7plD9SdDHFvNbyCoHPAQAo,7813
167
+ agentex/lib/core/temporal/workflows/workflow.py,sha256=ZoWsrNPup69RnMHnuks1DRy9YsmK_nYdjsOosYVfFxw,723
168
+ agentex/lib/core/tracing/__init__.py,sha256=07j9IRgZWFtZhdkk01l1nvaC5aCpygLWy94yXpYUZbM,229
169
+ agentex/lib/core/tracing/trace.py,sha256=b-TnBMEdUsZzKq2jfXU-GvFNxrfm6l_-YJtcw1nhohU,8952
170
+ agentex/lib/core/tracing/tracer.py,sha256=P2YGyAwQ82PtRjxiA0bnqbEePg_CVqpEngc9y8B2TAI,1846
171
+ agentex/lib/core/tracing/tracing_processor_manager.py,sha256=jIQJeq0G0vew5bVKTOycOb9YWqGr6xm52vhuKVNMYPc,3779
172
+ agentex/lib/core/tracing/processors/agentex_tracing_processor.py,sha256=DPC4gfrPWjMNjR2wbhHbMGOYHz-Ouadi-YyuTqFqFf0,3661
173
+ agentex/lib/core/tracing/processors/sgp_tracing_processor.py,sha256=WMbnkSAgAdvLm0iT3Ppa4KmANrAmtIFBppxF-qum2nQ,4096
174
+ agentex/lib/core/tracing/processors/tracing_processor_interface.py,sha256=IY-9YrPm4BESP3e7_vMi0_lh_jomP6CxVyrSFDX0UBk,861
175
175
  agentex/lib/sdk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
176
176
  agentex/lib/sdk/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
177
- agentex/lib/sdk/config/agent_config.py,sha256=WhLMd15po3loE67LNPjCGSG5xhvv4KH6xVn6Ejy2no0,2464
178
- agentex/lib/sdk/config/agent_manifest.py,sha256=GXEVZ9OEHPA4ESSNG4miCFjxiHhxmAWbe6nYwbiC3JM,8626
177
+ agentex/lib/sdk/config/agent_config.py,sha256=18SE1q4TWSH1t86zMC8Xuvt8ARY9aKgi2Rebd_AJSwk,2464
178
+ agentex/lib/sdk/config/agent_manifest.py,sha256=28e2o6yDe_hQMfegMUh07w-B5Kh9WZHv0z77kJvcJFk,8626
179
179
  agentex/lib/sdk/config/build_config.py,sha256=KI7SfVxGrv0rxJCIBuMT5M4oJ2o9n46LRH0t6fIki3g,1049
180
180
  agentex/lib/sdk/config/deployment_config.py,sha256=lbOx2g0Q2gbo9CqWFejzmiYqh3GLndpB7_gX6R92t0g,3992
181
181
  agentex/lib/sdk/config/environment_config.py,sha256=RrQPMHNAKOuqGpXPDKoQNi50lXssLOncIYLy4iwbrxs,6790
182
182
  agentex/lib/sdk/config/local_development_config.py,sha256=b1AZsOVo1RoHKbk8Nm5nC8jcjJSOxKkKBv9gLhFLX8s,1697
183
- agentex/lib/sdk/config/project_config.py,sha256=CGH_r9KbnSFMj2CnBkZnfg41L2o0TeVNz6MwBDKPT_U,3642
184
- agentex/lib/sdk/config/validation.py,sha256=QGAlAzlVJiWRlIksqxNS-JSwkk8Z4gXMSFUJc4qPrIQ,8989
183
+ agentex/lib/sdk/config/project_config.py,sha256=WTDpr0pP8Lih1awDcVfxN5yceys7ft4_CPAsHtMNg7I,3662
184
+ agentex/lib/sdk/config/validation.py,sha256=RgKU6t62mHmj9zWnqxXayd1134uHU4mN1xCt1yJkLqg,8989
185
185
  agentex/lib/sdk/fastacp/__init__.py,sha256=UvAdexdnfb4z0F4a2sfXROFyh9EjH89kf3AxHPybzCM,75
186
- agentex/lib/sdk/fastacp/fastacp.py,sha256=RM89_4_G2ZtIybPeMg641cw4ixFn4rZHy260FGSAa6o,3770
187
- agentex/lib/sdk/fastacp/base/base_acp_server.py,sha256=QLSdJVVW3E2K6qdHI6ZWQpAoOsfXQ_wk5Q6cFA2N5G4,16435
186
+ agentex/lib/sdk/fastacp/fastacp.py,sha256=yBGvTMYuT363Rw02Au3jc6-Tj7Z6US2NExHyb4RNOwk,3815
187
+ agentex/lib/sdk/fastacp/base/base_acp_server.py,sha256=4X6OzaS4PvUZcydwiJ0mp5GNtyvwNMv0oZiBeSSyaxo,16430
188
188
  agentex/lib/sdk/fastacp/base/constants.py,sha256=W4vpJ-5NML7239JyqzUWdu2IypIl8Cey8CS41KR2Vk0,519
189
- agentex/lib/sdk/fastacp/impl/agentic_base_acp.py,sha256=LWLAlHrs-2Lc2UICBAEFL8c3JwTA6oxPnzUzW0qQWSA,2694
190
- agentex/lib/sdk/fastacp/impl/sync_acp.py,sha256=0y_cYD-0UJOiVJv-BBMOt6PvElDf5zmc1uvbr81VcSI,3897
191
- agentex/lib/sdk/fastacp/impl/temporal_acp.py,sha256=Xz3PSzeItBulOKDHFpWSu6kUmII4qIHx2vDrtRGaA9k,3930
189
+ agentex/lib/sdk/fastacp/impl/agentic_base_acp.py,sha256=kuJxW4nGuqH2MlZYNBQl8dn_iZ5xx94WZ-ISejoEWxk,2661
190
+ agentex/lib/sdk/fastacp/impl/sync_acp.py,sha256=bLoGRPgvrWwx-U2hwNmaUllyGW2d_9jvVw7cDlEBPQ4,3897
191
+ agentex/lib/sdk/fastacp/impl/temporal_acp.py,sha256=wtbscrXfv6QCEjKuaPJV5EcoWvQBOZPG29na0p0qOPc,4221
192
192
  agentex/lib/sdk/fastacp/tests/README.md,sha256=HejScemERLCs-wCgU3l1Xo4tcQ4gQy15GgoF-CkNh-0,8270
193
- agentex/lib/sdk/fastacp/tests/conftest.py,sha256=wU3DCGZNBqY-HcJ4tz_tlphhS_5xGbZ6gSd72fGY2E0,9490
193
+ agentex/lib/sdk/fastacp/tests/conftest.py,sha256=S9M8xeXDxqYxEY6i2b9K_eSHGsurjj1TW8F1SIMM-m8,9643
194
194
  agentex/lib/sdk/fastacp/tests/pytest.ini,sha256=MdF2xHp4oPyUC4z7-xoNZR9vFyYkBoFvuCfgEEprv4k,231
195
- agentex/lib/sdk/fastacp/tests/run_tests.py,sha256=RqKmJiRFdtdql5e-37wBS8s5-CDtN5sjn3pZIcO4uv0,6159
196
- agentex/lib/sdk/fastacp/tests/test_base_acp_server.py,sha256=igkBqpUqQu12Br1ZTz1MlvKRxkhk266WjDdcf5FfzkE,15254
197
- agentex/lib/sdk/fastacp/tests/test_fastacp_factory.py,sha256=sowOBsApph-aeKVa520vwhDpYtph_0ginjweORRRFDk,14894
198
- agentex/lib/sdk/fastacp/tests/test_integration.py,sha256=2d1WCd0Y9yt8ds0gBW7GezXP_cl2XGfs26Y8SroWNLo,17905
199
- agentex/lib/sdk/state_machine/__init__.py,sha256=49pSzWgKYT2xviCe4xQd7V0kVv_h_N0SfgrwE_iP3wA,217
200
- agentex/lib/sdk/state_machine/noop_workflow.py,sha256=5RoVXcg-iOZz7kxtkDUnLnzY-GhJvED---L4r4eF7vQ,564
195
+ agentex/lib/sdk/fastacp/tests/run_tests.py,sha256=V0bsoY1G5mJXym-QEo7S2txUhlkUq9E6CsuGAcerB70,6159
196
+ agentex/lib/sdk/fastacp/tests/test_base_acp_server.py,sha256=Hh2LKKk3PujO-ph02XNhkI13lafmIW_rmHA3p5W6PA0,15277
197
+ agentex/lib/sdk/fastacp/tests/test_fastacp_factory.py,sha256=4260NF-T8JtglJNfd3poVkPVr7vQ1yzXuGTXn4csGFs,14920
198
+ agentex/lib/sdk/fastacp/tests/test_integration.py,sha256=bZgtX2CAAULCTM29jY_GJvifgb5KiAHupcd-ugrQ2WI,18179
199
+ agentex/lib/sdk/state_machine/__init__.py,sha256=9UAvP9b1VvvlFqN_y7Lu5L5wptfGoLVwBgWV8ThJe94,217
200
+ agentex/lib/sdk/state_machine/noop_workflow.py,sha256=MDfTQgqP77ogVVMQ_a6sn4_j6L-fShRd7aD7zAuOZds,650
201
201
  agentex/lib/sdk/state_machine/state.py,sha256=IT4wsnTaznhSkyN0lR48NHFF2glrraWQR8Q-91d4YKQ,244
202
- agentex/lib/sdk/state_machine/state_machine.py,sha256=SjJTxdLIQG85TwMx7sQj8fS_474oJ9fy9fiijy6WVKk,6979
202
+ agentex/lib/sdk/state_machine/state_machine.py,sha256=dmJyo__tmwyfUrCNIj4hTbEfgCs2rzLs_cOnk7u55MQ,7462
203
203
  agentex/lib/sdk/state_machine/state_workflow.py,sha256=ispqxlcLPT22glgOBXjyd-BXCI_tm8herTAY4BMwSX0,437
204
204
  agentex/lib/sdk/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
205
- agentex/lib/sdk/utils/messages.py,sha256=GdfT98NQRmltAnCQ2XW0XF5DO2jGi6TEZh8qqNv6WlY,8354
205
+ agentex/lib/sdk/utils/messages.py,sha256=xrBg3ujn-8egw4hNDNMHDj2lE18tPjVAqI0gO_oBJLo,8354
206
206
  agentex/lib/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
207
- agentex/lib/types/acp.py,sha256=YYTXsJWcw6BdIWXliKQxAwtHn07ZINQ-RsppyjY9_64,3974
208
- agentex/lib/types/agent_configs.py,sha256=3wRa2okimSzi2v8sJyMyrqRlcu_4sxes-_4smEK6fq8,2798
207
+ agentex/lib/types/acp.py,sha256=BfRF4Fr1xUcKxZQhAysm2qagideSRjtqActO_kRkQMU,3974
208
+ agentex/lib/types/agent_configs.py,sha256=9oyLuMNFF66Lio0fsIDWfBP1YWwYGiLAih5sm7BkZBs,2798
209
209
  agentex/lib/types/agent_results.py,sha256=ev6WnPLfZRbhy2HnBmdIrZq1ExVeaweXoLRxYGspyWM,653
210
- agentex/lib/types/converters.py,sha256=u6fLb0rBUDA6nF5hdbC8ms6H-Z21IQfLlIvYpau_P5g,2283
211
- agentex/lib/types/credentials.py,sha256=xUyh0MiNgy1c-BSBGXqbAMgbFEqnglESK99SRbsCsZA,1442
212
- agentex/lib/types/fastacp.py,sha256=konVHb3FQid3bt0q1TnKA6AB0huxO4LtW9M-na82unk,1746
210
+ agentex/lib/types/converters.py,sha256=IKywnGlsGwQ0fhr9t60c5rKpi63N1Oj8JzD4NeCB6SI,2285
211
+ agentex/lib/types/credentials.py,sha256=k6gtiIqSsKuS8vgucgQAHzb8oUlFdTj4CLtU69sk6Wg,1442
212
+ agentex/lib/types/fastacp.py,sha256=M7U7N8Ow87yEmBYG-WB6u8OHH2S1V8QTdPffAspKsQM,1729
213
213
  agentex/lib/types/files.py,sha256=sNxiuR_oEo7Z0YMqjQShErvS3txWyobrZzc4QMMM61U,320
214
214
  agentex/lib/types/json_rpc.py,sha256=9sPADVEduOnyTm1yCS8vhZDfjMQVEdzqIWpycY_NrV8,1068
215
215
  agentex/lib/types/llm_messages.py,sha256=eXsVJt_aQf3eGg_tPrDOPjFOhkbolb9IN1tU1c-IHYM,10668
216
- agentex/lib/types/tracing.py,sha256=0YBdy3aKvxIcpOW0podEAqsFl3yEKW4PswNf-QnMNqo,731
216
+ agentex/lib/types/tracing.py,sha256=Np5fvbHXu-F9lK5mdtUT90YbeK640dcXKFaj3LHy91U,731
217
217
  agentex/lib/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
218
- agentex/lib/utils/completions.py,sha256=m9TMwl9-nYK4DOQ8bNyj5YCFrxK3yN3zKvXmdINcIbo,4158
219
- agentex/lib/utils/console.py,sha256=HVP1NSF4idx40hlGB3ifuofy3rsc83WF_1yNpHYM99M,417
220
- agentex/lib/utils/debug.py,sha256=1o2NjG8bZXTi63KTGjL3EmU_zMGapco7v5xoDuZRjU8,2148
218
+ agentex/lib/utils/completions.py,sha256=OAztY4zytIeSzm_gqqN6KfJO6rSIfUF-_uuPdAFI_EI,4204
219
+ agentex/lib/utils/console.py,sha256=f1kaM1yzVNt9mMeZbajyJF_JWU-W5nIYqy6SFxrW2os,417
220
+ agentex/lib/utils/debug.py,sha256=kJNBQsxhq1rVNJlmNDLVYtDVzxI_l7v7Gv6jOamebNA,2248
221
221
  agentex/lib/utils/io.py,sha256=17p7dfUZ1YxTAc-n_g7eFOjzInoKi7Uedyad967EKYQ,754
222
- agentex/lib/utils/iterables.py,sha256=cD49hj98mtY0QPaS0ZA2kguNeGzRU4UfbZfwyASWdzY,319
223
- agentex/lib/utils/json_schema.py,sha256=nSHbi6LC-oWXHP6sMLCBychA7B0R2DItRIJNCCEzRsY,741
224
- agentex/lib/utils/logging.py,sha256=osfi7UUiZ30As6z3vgn1djdGLlzTO3SBYiX6212TKAg,2911
225
- agentex/lib/utils/mcp.py,sha256=lYQPwKAOH6Gf2I_TeovhEG9YUijUPcN0rENNdT0Vk6c,505
226
- agentex/lib/utils/model_utils.py,sha256=bkcB1I0DMRAtFQpznsXgFGKZGrT7NGJ4tIwFM4dtUXQ,2547
222
+ agentex/lib/utils/iterables.py,sha256=SxDDF0nL4DMTxMKQu3TZkdT1RW8sTJIlIG1uHmfmgic,319
223
+ agentex/lib/utils/json_schema.py,sha256=09mrYMQGtGJqJajlr6YXwa_O5L6nGnSlLPlDObO-B2Q,853
224
+ agentex/lib/utils/logging.py,sha256=ZClQumGpTwjO9OueyH5HDBFmEyP6_OrEIfdM4hzvjzQ,2987
225
+ agentex/lib/utils/mcp.py,sha256=uRRgM_0JVybSTOFGpHyPgQXAWd-x5MB9U9x0luFpaqI,506
226
+ agentex/lib/utils/model_utils.py,sha256=Rz7wkwemzzm2Kpu1KxqH_7rXzeEMZqpEmtfkwMzZQTw,2529
227
227
  agentex/lib/utils/parsing.py,sha256=2T-B4nJSupo2RLf9AkpV6VQHqDnF97ZBgO6zvGCauCo,369
228
228
  agentex/lib/utils/regex.py,sha256=Y3VcehCznAqa59D4WTwK_ki722oudHBlFqBk0I930zo,212
229
- agentex/lib/utils/registration.py,sha256=JTU02vmS9VbX3VEBjp40i8jGcJRYzAQ1hqKSjdhcPCk,4159
229
+ agentex/lib/utils/registration.py,sha256=2W3tKPJh23lLM26jVI0LBzkcmgXljVtDzL2yEnqf58U,4127
230
230
  agentex/lib/utils/temporal.py,sha256=sXo8OPMMXiyrF7OSBCJBuN_ufyQOD2bLOXgDbVZoyds,292
231
231
  agentex/lib/utils/dev_tools/__init__.py,sha256=oaHxw6ymfhNql-kzXHv3NWVHuqD4fHumasNXJG7kHTU,261
232
- agentex/lib/utils/dev_tools/async_messages.py,sha256=dM01spww2Fy6ej_WDnPXs2eG-9yCU7Xc1IMKwJzq6cM,19543
232
+ agentex/lib/utils/dev_tools/async_messages.py,sha256=XAH_C5apccyymdTBM7Oe3O5PNweXzKh9rSPcl37YCvQ,19607
233
233
  agentex/resources/__init__.py,sha256=74rMqWBzQ2dSrKQqsrd7-jskPws0O_ogkFltvZO3HoU,3265
234
- agentex/resources/agents.py,sha256=IvnUuQZ_cpP6Kz96aD6MSB0AQ5-VLo_L-VIs6MVSu1s,47132
234
+ agentex/resources/agents.py,sha256=gpITPi5moZ0QtUWByGqz1Ciqp9n42dpkjQ4DAafiQWM,47173
235
235
  agentex/resources/events.py,sha256=Zc9JhUm3bq2VFnBAolC0M7KZernzj1AjZ_vj0ibP4GY,10412
236
236
  agentex/resources/spans.py,sha256=wmcUs4XbXIF5rPeyU_f39c2RTbTLnkuh2LYogZEBD6s,20936
237
237
  agentex/resources/states.py,sha256=O31A8--n7n0rHsng2e1oCUAzLNjQIxDUk7rq0IXfgGM,19262
@@ -247,10 +247,10 @@ agentex/types/agent_list_params.py,sha256=81IWnRZ2rLfHH7GB6VkXShYjb44DO0guG1znJc
247
247
  agentex/types/agent_list_response.py,sha256=g0b9Cw7j2yk14veyJORpF3me8iW7g7pr2USpXGokoFI,254
248
248
  agentex/types/agent_rpc_by_name_params.py,sha256=G6xkjrZKPmJvhwqgc68tAnzmb4wYh9k0zlcm9CsLQR0,2024
249
249
  agentex/types/agent_rpc_params.py,sha256=qkwICON3v6AIE8J2oN1483K_jmGueBYGkVg2W9EUJK0,2012
250
- agentex/types/agent_rpc_response.py,sha256=dYvtwXzznZZmpJzX8e5pAW3Cm5m8qXE5-QN6Eb1cZNI,1288
250
+ agentex/types/agent_rpc_response.py,sha256=kvni8GVYgjjVQ4hmoZsauFo8e9jL8KKdZrSjo571Ztc,1288
251
251
  agentex/types/agent_rpc_result.py,sha256=Sx_DKdM9vCZs7uvWo6H0L9PxU6Je0IYw04T4BwOvVYU,2265
252
252
  agentex/types/agent_task_tracker.py,sha256=JK1kmQ7LIx1eWC-XaU2pJcIvdtQCmEn21dsJTxglAYA,803
253
- agentex/types/data_content.py,sha256=BxJrovgQUCvPP2ac3KTQdErbdDpkZSIbLZhJ4nEDyZE,786
253
+ agentex/types/data_content.py,sha256=EaGplLRZgCgaHnt-3KEAj1yFiAlOFODprpA8I1oiF3s,776
254
254
  agentex/types/data_content_param.py,sha256=5NtD2mcP1VfQJHcUCxgarzd4bwa07Ym2UIYqFWfAcbo,824
255
255
  agentex/types/data_delta.py,sha256=q3doAofriE7bQT3R-LbC8VYepytCoUOgHwJ6kWcJjr4,322
256
256
  agentex/types/event.py,sha256=ilYXj7HlPDrgtQnh4YsgQrTXN-BxE7sOgi2ZorKYHdc,700
@@ -288,10 +288,10 @@ agentex/types/text_content.py,sha256=-rNhHh0L_b3dxnG49Baf47JRNnDGW0xhglq8xkaGDdE
288
288
  agentex/types/text_content_param.py,sha256=A2Xuxclh44Ih-C9etF5gl_VBNF-Ld36ZzI61SNCPdUE,1449
289
289
  agentex/types/text_delta.py,sha256=lUTceOXVsh-O4QOzZnkpB3I9d6V1Z0co0JwPZsXnXjQ,322
290
290
  agentex/types/text_format.py,sha256=b73CgswRSlvdLzHi_0QQCiZaGRyifkgXN8Yihrhshgs,224
291
- agentex/types/tool_request_content.py,sha256=8swTXUME4x2_CaQuAwA1hNYjjsmFHEEWT4qodIAQXqc,975
291
+ agentex/types/tool_request_content.py,sha256=y9EPzvCQjvXJVDXqMR-fANFHOnwrpawBNIWd8xqGTwA,965
292
292
  agentex/types/tool_request_content_param.py,sha256=st06ZsV9qigwPBprhoKyzGOUeV40q27dwOWbWxKxmHk,1025
293
293
  agentex/types/tool_request_delta.py,sha256=AUi9LoPwxyOx_JGOTOvSND-9oulsJk2y3Q7RlCgiqGI,387
294
- agentex/types/tool_response_content.py,sha256=Dh-PLPgTeFdN-5_JRfe4tadifo5-YEgnvZ0hPIYglSg,964
294
+ agentex/types/tool_response_content.py,sha256=sYK-AeL6no2FGvdNWTloLMUt3IVHAPLf6kvBobJrWJQ,936
295
295
  agentex/types/tool_response_content_param.py,sha256=HvL79yv0DigKJ4UG6rRAcNlXH2zm56nfBeeplsI9Nwg,995
296
296
  agentex/types/tool_response_delta.py,sha256=m-zqPN17s6E63jt_qZj0dqoySWo1_v9FyzB4_ERorcM,388
297
297
  agentex/types/tracker_list_params.py,sha256=LXbt4UgZqseH9HT-qnO7DwC5oTA6jxvBmbS1ej720_U,368
@@ -304,8 +304,8 @@ agentex/types/messages/batch_update_params.py,sha256=Ug5CThbD49a8j4qucg04OdmVrp_
304
304
  agentex/types/messages/batch_update_response.py,sha256=TbSBe6SuPzjXXWSj-nRjT1JHGBooTshHQQDa1AixQA8,278
305
305
  agentex/types/shared/__init__.py,sha256=IKs-Qn5Yja0kFh1G1kDqYZo43qrOu1hSoxlPdN-85dI,149
306
306
  agentex/types/shared/delete_response.py,sha256=8qH3zvQXaOHYQSHyXi7UQxdR4miTzR7V9K4zXVsiUyk,215
307
- agentex_sdk-0.4.19.dist-info/METADATA,sha256=wAVGZ27kfYe2_6mzg6KYLTquxKguzFAL-y_C8ZI9azg,15198
308
- agentex_sdk-0.4.19.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
309
- agentex_sdk-0.4.19.dist-info/entry_points.txt,sha256=V7vJuMZdF0UlvgX6KiBN7XUvq_cxF5kplcYvc1QlFaQ,62
310
- agentex_sdk-0.4.19.dist-info/licenses/LICENSE,sha256=Q1AOx2FtRcMlyMgQJ9eVN2WKPq2mQ33lnB4tvWxabLA,11337
311
- agentex_sdk-0.4.19.dist-info/RECORD,,
307
+ agentex_sdk-0.4.20.dist-info/METADATA,sha256=PBFFdBD7eL9fv_CZwAIpjwZeR77tqKT4XWgp89StpqY,15198
308
+ agentex_sdk-0.4.20.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
309
+ agentex_sdk-0.4.20.dist-info/entry_points.txt,sha256=V7vJuMZdF0UlvgX6KiBN7XUvq_cxF5kplcYvc1QlFaQ,62
310
+ agentex_sdk-0.4.20.dist-info/licenses/LICENSE,sha256=Q1AOx2FtRcMlyMgQJ9eVN2WKPq2mQ33lnB4tvWxabLA,11337
311
+ agentex_sdk-0.4.20.dist-info/RECORD,,