agentex-sdk 0.6.1__tar.gz → 0.6.3__tar.gz

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 (605) hide show
  1. agentex_sdk-0.6.3/.release-please-manifest.json +3 -0
  2. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/CHANGELOG.md +12 -0
  3. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/PKG-INFO +1 -1
  4. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/api.md +13 -0
  5. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/000_hello_acp/manifest.yaml +1 -1
  6. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/000_hello_acp/README.md +1 -1
  7. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/000_hello_acp/manifest.yaml +1 -1
  8. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/010_multiturn/README.md +6 -6
  9. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/010_multiturn/dev.ipynb +1 -1
  10. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/020_streaming/README.md +5 -5
  11. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/030_tracing/README.md +2 -2
  12. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/040_other_sdks/README.md +2 -2
  13. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/080_batch_events/README.md +6 -6
  14. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/README.md +2 -2
  15. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/start-agents.sh +1 -1
  16. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/000_hello_acp/README.md +3 -3
  17. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/010_agent_chat/README.md +2 -2
  18. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/010_agent_chat/project/workflow.py +1 -1
  19. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/010_agent_chat/tests/test_agent.py +1 -1
  20. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/020_state_machine/README.md +1 -1
  21. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/020_state_machine/manifest.yaml +2 -2
  22. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/020_state_machine/pyproject.toml +1 -1
  23. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/030_custom_activities/README.md +1 -1
  24. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/README.md +1 -1
  25. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/project/acp.py +1 -1
  26. {agentex_sdk-0.6.1/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools → agentex_sdk-0.6.3/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world}/dev.ipynb +1 -3
  27. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/manifest.yaml +8 -8
  28. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/project/acp.py +9 -1
  29. agentex_sdk-0.6.3/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/project/run_worker.py +69 -0
  30. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/project/workflow.py +151 -65
  31. {agentex_sdk-0.6.1/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop → agentex_sdk-0.6.3/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world}/pyproject.toml +5 -4
  32. agentex_sdk-0.6.3/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/tests/test_agent.py +137 -0
  33. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/README.md +1 -1
  34. {agentex_sdk-0.6.1/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world → agentex_sdk-0.6.3/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools}/dev.ipynb +1 -3
  35. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/manifest.yaml +6 -5
  36. {agentex_sdk-0.6.1/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop → agentex_sdk-0.6.3/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools}/project/acp.py +14 -11
  37. agentex_sdk-0.6.3/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/project/run_worker.py +71 -0
  38. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/project/workflow.py +163 -49
  39. {agentex_sdk-0.6.1/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world → agentex_sdk-0.6.3/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools}/pyproject.toml +5 -4
  40. agentex_sdk-0.6.3/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/tests/test_agent.py +155 -0
  41. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/dev.ipynb +2 -4
  42. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/manifest.yaml +6 -6
  43. {agentex_sdk-0.6.1/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools → agentex_sdk-0.6.3/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop}/project/acp.py +35 -9
  44. agentex_sdk-0.6.3/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project/run_worker.py +73 -0
  45. agentex_sdk-0.6.3/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project/workflow.py +248 -0
  46. {agentex_sdk-0.6.1/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools → agentex_sdk-0.6.3/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop}/pyproject.toml +5 -4
  47. agentex_sdk-0.6.3/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/tests/test_agent.py +201 -0
  48. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/run_all_async_tests.sh +13 -11
  49. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/test_utils/async_utils.py +53 -15
  50. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/pyproject.toml +1 -1
  51. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_client.py +15 -1
  52. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_version.py +1 -1
  53. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/providers/_modules/openai.py +16 -1
  54. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/commands/init.py +3 -3
  55. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/plugins/openai_agents/hooks/hooks.py +19 -11
  56. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/plugins/openai_agents/models/temporal_streaming_model.py +83 -5
  57. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/plugins/openai_agents/models/temporal_tracing_model.py +107 -21
  58. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/resources/__init__.py +14 -0
  59. agentex_sdk-0.6.3/src/agentex/resources/deployment_history.py +272 -0
  60. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/__init__.py +3 -0
  61. agentex_sdk-0.6.3/src/agentex/types/deployment_history.py +33 -0
  62. agentex_sdk-0.6.3/src/agentex/types/deployment_history_list_params.py +18 -0
  63. agentex_sdk-0.6.3/src/agentex/types/deployment_history_list_response.py +10 -0
  64. agentex_sdk-0.6.3/tests/api_resources/test_deployment_history.py +187 -0
  65. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/uv.lock +1 -1
  66. agentex_sdk-0.6.1/.release-please-manifest.json +0 -3
  67. agentex_sdk-0.6.1/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/project/run_worker.py +0 -41
  68. agentex_sdk-0.6.1/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/tests/test_agent.py +0 -136
  69. agentex_sdk-0.6.1/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/project/run_worker.py +0 -47
  70. agentex_sdk-0.6.1/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/tests/test_agent.py +0 -136
  71. agentex_sdk-0.6.1/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project/run_worker.py +0 -47
  72. agentex_sdk-0.6.1/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project/workflow.py +0 -135
  73. agentex_sdk-0.6.1/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/tests/test_agent.py +0 -136
  74. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/.gitignore +0 -0
  75. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/CLAUDE.md +0 -0
  76. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/CONTRIBUTING.md +0 -0
  77. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/LICENSE +0 -0
  78. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/README.md +0 -0
  79. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/SECURITY.md +0 -0
  80. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/bin/check-release-environment +0 -0
  81. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/bin/publish-pypi +0 -0
  82. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/.keep +0 -0
  83. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/launch-tutorials.sh +0 -0
  84. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/000_hello_acp/.dockerignore +0 -0
  85. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/000_hello_acp/Dockerfile +0 -0
  86. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/000_hello_acp/README.md +0 -0
  87. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/000_hello_acp/dev.ipynb +0 -0
  88. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/000_hello_acp/project/__init__.py +0 -0
  89. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/000_hello_acp/project/acp.py +0 -0
  90. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/000_hello_acp/pyproject.toml +0 -0
  91. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/000_hello_acp/tests/test_agent.py +0 -0
  92. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/010_multiturn/.dockerignore +0 -0
  93. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/010_multiturn/Dockerfile +0 -0
  94. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/010_multiturn/README.md +0 -0
  95. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/010_multiturn/dev.ipynb +0 -0
  96. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/010_multiturn/manifest.yaml +0 -0
  97. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/010_multiturn/project/__init__.py +0 -0
  98. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/010_multiturn/project/acp.py +0 -0
  99. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/010_multiturn/pyproject.toml +0 -0
  100. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/010_multiturn/tests/test_agent.py +0 -0
  101. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/020_streaming/.dockerignore +0 -0
  102. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/020_streaming/Dockerfile +0 -0
  103. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/020_streaming/README.md +0 -0
  104. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/020_streaming/dev.ipynb +0 -0
  105. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/020_streaming/manifest.yaml +0 -0
  106. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/020_streaming/project/__init__.py +0 -0
  107. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/020_streaming/project/acp.py +0 -0
  108. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/020_streaming/pyproject.toml +0 -0
  109. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/00_sync/020_streaming/tests/test_agent.py +0 -0
  110. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/000_hello_acp/.dockerignore +0 -0
  111. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/000_hello_acp/Dockerfile +0 -0
  112. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/000_hello_acp/dev.ipynb +0 -0
  113. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/000_hello_acp/project/__init__.py +0 -0
  114. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/000_hello_acp/project/acp.py +0 -0
  115. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/000_hello_acp/pyproject.toml +0 -0
  116. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/000_hello_acp/tests/test_agent.py +0 -0
  117. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/010_multiturn/.dockerignore +0 -0
  118. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/010_multiturn/Dockerfile +0 -0
  119. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/010_multiturn/manifest.yaml +0 -0
  120. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/010_multiturn/project/__init__.py +0 -0
  121. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/010_multiturn/project/acp.py +0 -0
  122. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/010_multiturn/pyproject.toml +0 -0
  123. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/010_multiturn/tests/test_agent.py +0 -0
  124. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/020_streaming/.dockerignore +0 -0
  125. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/020_streaming/Dockerfile +0 -0
  126. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/020_streaming/dev.ipynb +0 -0
  127. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/020_streaming/manifest.yaml +0 -0
  128. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/020_streaming/project/__init__.py +0 -0
  129. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/020_streaming/project/acp.py +0 -0
  130. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/020_streaming/pyproject.toml +0 -0
  131. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/020_streaming/tests/test_agent.py +0 -0
  132. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/030_tracing/.dockerignore +0 -0
  133. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/030_tracing/Dockerfile +0 -0
  134. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/030_tracing/dev.ipynb +0 -0
  135. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/030_tracing/manifest.yaml +0 -0
  136. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/030_tracing/project/__init__.py +0 -0
  137. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/030_tracing/project/acp.py +0 -0
  138. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/030_tracing/pyproject.toml +0 -0
  139. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/030_tracing/tests/test_agent.py +0 -0
  140. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/040_other_sdks/.dockerignore +0 -0
  141. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/040_other_sdks/Dockerfile +0 -0
  142. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/040_other_sdks/dev.ipynb +0 -0
  143. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/040_other_sdks/manifest.yaml +0 -0
  144. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/040_other_sdks/project/__init__.py +0 -0
  145. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/040_other_sdks/project/acp.py +0 -0
  146. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/040_other_sdks/pyproject.toml +0 -0
  147. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/040_other_sdks/tests/test_agent.py +0 -0
  148. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/080_batch_events/.dockerignore +0 -0
  149. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/080_batch_events/Dockerfile +0 -0
  150. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/080_batch_events/dev.ipynb +0 -0
  151. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/080_batch_events/manifest.yaml +0 -0
  152. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/080_batch_events/project/__init__.py +0 -0
  153. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/080_batch_events/project/acp.py +0 -0
  154. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/080_batch_events/pyproject.toml +0 -0
  155. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/080_batch_events/test_batch_events.py +0 -0
  156. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/080_batch_events/tests/test_agent.py +0 -0
  157. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/Dockerfile +0 -0
  158. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/creator.yaml +0 -0
  159. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/critic.yaml +0 -0
  160. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/formatter.yaml +0 -0
  161. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/orchestrator.yaml +0 -0
  162. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/project/__init__.py +0 -0
  163. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/project/creator.py +0 -0
  164. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/project/critic.py +0 -0
  165. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/project/formatter.py +0 -0
  166. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/project/models.py +0 -0
  167. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/project/orchestrator.py +0 -0
  168. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/project/state_machines/__init__.py +0 -0
  169. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/project/state_machines/content_workflow.py +0 -0
  170. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/pyproject.toml +0 -0
  171. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/tests/test_agent.py +0 -0
  172. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/000_hello_acp/.dockerignore +0 -0
  173. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/000_hello_acp/Dockerfile +0 -0
  174. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/000_hello_acp/dev.ipynb +0 -0
  175. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/000_hello_acp/manifest.yaml +0 -0
  176. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/000_hello_acp/project/__init__.py +0 -0
  177. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/000_hello_acp/project/acp.py +0 -0
  178. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/000_hello_acp/project/run_worker.py +0 -0
  179. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/000_hello_acp/project/workflow.py +0 -0
  180. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/000_hello_acp/pyproject.toml +0 -0
  181. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/000_hello_acp/tests/test_agent.py +0 -0
  182. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/010_agent_chat/.dockerignore +0 -0
  183. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/010_agent_chat/Dockerfile +0 -0
  184. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/010_agent_chat/dev.ipynb +0 -0
  185. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/010_agent_chat/manifest.yaml +0 -0
  186. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/010_agent_chat/project/__init__.py +0 -0
  187. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/010_agent_chat/project/acp.py +0 -0
  188. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/010_agent_chat/project/run_worker.py +0 -0
  189. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/010_agent_chat/pyproject.toml +0 -0
  190. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/020_state_machine/.dockerignore +0 -0
  191. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/020_state_machine/Dockerfile +0 -0
  192. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/020_state_machine/dev.ipynb +0 -0
  193. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/020_state_machine/project/__init__.py +0 -0
  194. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/020_state_machine/project/acp.py +0 -0
  195. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/020_state_machine/project/run_worker.py +0 -0
  196. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/020_state_machine/project/state_machines/deep_research.py +0 -0
  197. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/020_state_machine/project/workflow.py +0 -0
  198. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/020_state_machine/project/workflows/deep_research/clarify_user_query.py +0 -0
  199. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/020_state_machine/project/workflows/deep_research/performing_deep_research.py +0 -0
  200. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/020_state_machine/project/workflows/deep_research/waiting_for_user_input.py +0 -0
  201. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/020_state_machine/tests/test_agent.py +0 -0
  202. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/030_custom_activities/.dockerignore +0 -0
  203. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/030_custom_activities/Dockerfile +0 -0
  204. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/030_custom_activities/dev.ipynb +0 -0
  205. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/030_custom_activities/manifest.yaml +0 -0
  206. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/030_custom_activities/project/__init__.py +0 -0
  207. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/030_custom_activities/project/acp.py +0 -0
  208. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/030_custom_activities/project/custom_activites.py +0 -0
  209. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/030_custom_activities/project/run_worker.py +0 -0
  210. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/030_custom_activities/project/shared_models.py +0 -0
  211. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/030_custom_activities/project/workflow.py +0 -0
  212. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/030_custom_activities/project/workflow_utils.py +0 -0
  213. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/030_custom_activities/pyproject.toml +0 -0
  214. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/030_custom_activities/tests/test_agent.py +0 -0
  215. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/.dockerignore +0 -0
  216. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/Dockerfile +0 -0
  217. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/dev.ipynb +0 -0
  218. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/manifest.yaml +0 -0
  219. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/project/__init__.py +0 -0
  220. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/project/run_worker.py +0 -0
  221. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/project/workflow.py +0 -0
  222. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/pyproject.toml +0 -0
  223. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/tests/test_agent.py +0 -0
  224. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/.dockerignore +0 -0
  225. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/Dockerfile +0 -0
  226. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/README.md +0 -0
  227. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/environments.yaml +0 -0
  228. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/project/__init__.py +0 -0
  229. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/.dockerignore +0 -0
  230. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/Dockerfile +0 -0
  231. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/environments.yaml +0 -0
  232. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/project/__init__.py +0 -0
  233. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/project/activities.py +0 -0
  234. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/project/tools.py +0 -0
  235. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/.dockerignore +0 -0
  236. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/Dockerfile +0 -0
  237. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/README.md +0 -0
  238. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/environments.yaml +0 -0
  239. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project/__init__.py +0 -0
  240. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project/activities.py +0 -0
  241. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project/child_workflow.py +0 -0
  242. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project/tools.py +0 -0
  243. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/README.md +0 -0
  244. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/TEST_RUNNER_README.md +0 -0
  245. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/pytest.ini +0 -0
  246. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/examples/tutorials/test_utils/sync.py +0 -0
  247. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/noxfile.py +0 -0
  248. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/release-please-config.json +0 -0
  249. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/requirements-dev.lock +0 -0
  250. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/requirements.lock +0 -0
  251. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/__init__.py +0 -0
  252. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_base_client.py +0 -0
  253. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_compat.py +0 -0
  254. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_constants.py +0 -0
  255. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_exceptions.py +0 -0
  256. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_files.py +0 -0
  257. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_models.py +0 -0
  258. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_qs.py +0 -0
  259. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_resource.py +0 -0
  260. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_response.py +0 -0
  261. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_streaming.py +0 -0
  262. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_types.py +0 -0
  263. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_utils/__init__.py +0 -0
  264. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_utils/_compat.py +0 -0
  265. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_utils/_datetime_parse.py +0 -0
  266. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_utils/_logs.py +0 -0
  267. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_utils/_proxy.py +0 -0
  268. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_utils/_reflection.py +0 -0
  269. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_utils/_resources_proxy.py +0 -0
  270. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_utils/_streams.py +0 -0
  271. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_utils/_sync.py +0 -0
  272. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_utils/_transform.py +0 -0
  273. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_utils/_typing.py +0 -0
  274. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/_utils/_utils.py +0 -0
  275. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/.keep +0 -0
  276. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/__init__.py +0 -0
  277. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/__init__.py +0 -0
  278. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/_modules/__init__.py +0 -0
  279. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/_modules/acp.py +0 -0
  280. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/_modules/agent_task_tracker.py +0 -0
  281. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/_modules/agents.py +0 -0
  282. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/_modules/events.py +0 -0
  283. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/_modules/messages.py +0 -0
  284. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/_modules/state.py +0 -0
  285. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/_modules/streaming.py +0 -0
  286. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/_modules/tasks.py +0 -0
  287. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/_modules/tracing.py +0 -0
  288. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/providers/__init__.py +0 -0
  289. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/providers/_modules/__init__.py +0 -0
  290. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/providers/_modules/litellm.py +0 -0
  291. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/providers/_modules/sgp.py +0 -0
  292. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/providers/_modules/sync_provider.py +0 -0
  293. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/utils/__init__.py +0 -0
  294. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/utils/_modules/__init__.py +0 -0
  295. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/utils/_modules/client.py +0 -0
  296. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/adk/utils/_modules/templating.py +0 -0
  297. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/__init__.py +0 -0
  298. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/commands/__init__.py +0 -0
  299. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/commands/agents.py +0 -0
  300. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/commands/main.py +0 -0
  301. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/commands/secrets.py +0 -0
  302. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/commands/tasks.py +0 -0
  303. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/commands/uv.py +0 -0
  304. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/debug/__init__.py +0 -0
  305. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/debug/debug_config.py +0 -0
  306. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/debug/debug_handlers.py +0 -0
  307. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/handlers/__init__.py +0 -0
  308. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/handlers/agent_handlers.py +0 -0
  309. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/handlers/cleanup_handlers.py +0 -0
  310. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/handlers/deploy_handlers.py +0 -0
  311. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/handlers/run_handlers.py +0 -0
  312. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/handlers/secret_handlers.py +0 -0
  313. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/default/.dockerignore.j2 +0 -0
  314. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/default/Dockerfile-uv.j2 +0 -0
  315. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/default/Dockerfile.j2 +0 -0
  316. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/default/README.md.j2 +0 -0
  317. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/default/dev.ipynb.j2 +0 -0
  318. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/default/environments.yaml.j2 +0 -0
  319. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/default/manifest.yaml.j2 +0 -0
  320. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/default/project/acp.py.j2 +0 -0
  321. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/default/pyproject.toml.j2 +0 -0
  322. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/default/requirements.txt.j2 +0 -0
  323. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/default/test_agent.py.j2 +0 -0
  324. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/sync/.dockerignore.j2 +0 -0
  325. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/sync/Dockerfile-uv.j2 +0 -0
  326. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/sync/Dockerfile.j2 +0 -0
  327. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/sync/README.md.j2 +0 -0
  328. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/sync/dev.ipynb.j2 +0 -0
  329. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/sync/environments.yaml.j2 +0 -0
  330. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/sync/manifest.yaml.j2 +0 -0
  331. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/sync/project/acp.py.j2 +0 -0
  332. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/sync/pyproject.toml.j2 +0 -0
  333. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/sync/requirements.txt.j2 +0 -0
  334. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/sync/test_agent.py.j2 +0 -0
  335. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/temporal/.dockerignore.j2 +0 -0
  336. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/temporal/Dockerfile-uv.j2 +0 -0
  337. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/temporal/Dockerfile.j2 +0 -0
  338. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/temporal/README.md.j2 +0 -0
  339. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/temporal/dev.ipynb.j2 +0 -0
  340. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/temporal/environments.yaml.j2 +0 -0
  341. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/temporal/manifest.yaml.j2 +0 -0
  342. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/temporal/project/acp.py.j2 +0 -0
  343. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/temporal/project/activities.py.j2 +0 -0
  344. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/temporal/project/run_worker.py.j2 +0 -0
  345. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/temporal/project/workflow.py.j2 +0 -0
  346. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/temporal/pyproject.toml.j2 +0 -0
  347. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/temporal/requirements.txt.j2 +0 -0
  348. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/templates/temporal/test_agent.py.j2 +0 -0
  349. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/utils/__init__.py +0 -0
  350. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/utils/auth_utils.py +0 -0
  351. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/utils/cli_utils.py +0 -0
  352. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/utils/credential_utils.py +0 -0
  353. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/utils/exceptions.py +0 -0
  354. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/utils/kubectl_utils.py +0 -0
  355. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/utils/kubernetes_secrets_utils.py +0 -0
  356. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/cli/utils/path_utils.py +0 -0
  357. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/__init__.py +0 -0
  358. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/adapters/__init__.py +0 -0
  359. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/adapters/llm/__init__.py +0 -0
  360. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/adapters/llm/adapter_litellm.py +0 -0
  361. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/adapters/llm/adapter_sgp.py +0 -0
  362. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/adapters/llm/port.py +0 -0
  363. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/adapters/streams/adapter_redis.py +0 -0
  364. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/adapters/streams/port.py +0 -0
  365. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/clients/__init__.py +0 -0
  366. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/clients/temporal/__init__.py +0 -0
  367. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/clients/temporal/temporal_client.py +0 -0
  368. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/clients/temporal/types.py +0 -0
  369. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/clients/temporal/utils.py +0 -0
  370. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/__init__.py +0 -0
  371. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/__init__.py +0 -0
  372. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/acp/__init__.py +0 -0
  373. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/acp/acp.py +0 -0
  374. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/agent_task_tracker.py +0 -0
  375. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/agents.py +0 -0
  376. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/events.py +0 -0
  377. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/messages.py +0 -0
  378. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/providers/__init__.py +0 -0
  379. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/providers/litellm.py +0 -0
  380. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/providers/openai.py +0 -0
  381. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/providers/sgp.py +0 -0
  382. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/state.py +0 -0
  383. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/streaming.py +0 -0
  384. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/tasks.py +0 -0
  385. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/tracing.py +0 -0
  386. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/utils/__init__.py +0 -0
  387. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/services/adk/utils/templating.py +0 -0
  388. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/__init__.py +0 -0
  389. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/__init__.py +0 -0
  390. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/activity_helpers.py +0 -0
  391. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/__init__.py +0 -0
  392. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/acp/__init__.py +0 -0
  393. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/acp/acp_activities.py +0 -0
  394. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/agent_task_tracker_activities.py +0 -0
  395. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/agents_activities.py +0 -0
  396. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/events_activities.py +0 -0
  397. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/messages_activities.py +0 -0
  398. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/providers/__init__.py +0 -0
  399. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/providers/litellm_activities.py +0 -0
  400. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/providers/openai_activities.py +0 -0
  401. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/providers/sgp_activities.py +0 -0
  402. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/state_activities.py +0 -0
  403. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/streaming_activities.py +0 -0
  404. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/tasks_activities.py +0 -0
  405. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/tracing_activities.py +0 -0
  406. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/utils/__init__.py +0 -0
  407. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/activities/adk/utils/templating_activities.py +0 -0
  408. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/plugins/__init__.py +0 -0
  409. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/plugins/openai_agents/README.md +0 -0
  410. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/plugins/openai_agents/__init__.py +0 -0
  411. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/plugins/openai_agents/hooks/__init__.py +0 -0
  412. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/plugins/openai_agents/hooks/activities.py +0 -0
  413. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/plugins/openai_agents/interceptors/__init__.py +0 -0
  414. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/plugins/openai_agents/interceptors/context_interceptor.py +0 -0
  415. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/plugins/openai_agents/models/__init__.py +0 -0
  416. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/plugins/openai_agents/tests/__init__.py +0 -0
  417. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/plugins/openai_agents/tests/conftest.py +0 -0
  418. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/plugins/openai_agents/tests/test_streaming_model.py +0 -0
  419. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/services/__init__.py +0 -0
  420. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/services/temporal_task_service.py +0 -0
  421. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/types/__init__.py +0 -0
  422. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/types/workflow.py +0 -0
  423. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/workers/__init__.py +0 -0
  424. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/workers/worker.py +0 -0
  425. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/temporal/workflows/workflow.py +0 -0
  426. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/tracing/__init__.py +0 -0
  427. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/tracing/processors/agentex_tracing_processor.py +0 -0
  428. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/tracing/processors/sgp_tracing_processor.py +0 -0
  429. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/tracing/processors/tracing_processor_interface.py +0 -0
  430. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/tracing/trace.py +0 -0
  431. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/tracing/tracer.py +0 -0
  432. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/core/tracing/tracing_processor_manager.py +0 -0
  433. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/environment_variables.py +0 -0
  434. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/py.typed +0 -0
  435. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/__init__.py +0 -0
  436. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/config/__init__.py +0 -0
  437. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/config/agent_config.py +0 -0
  438. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/config/agent_manifest.py +0 -0
  439. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/config/build_config.py +0 -0
  440. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/config/deployment_config.py +0 -0
  441. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/config/environment_config.py +0 -0
  442. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/config/local_development_config.py +0 -0
  443. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/config/project_config.py +0 -0
  444. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/config/validation.py +0 -0
  445. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/fastacp/__init__.py +0 -0
  446. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/fastacp/base/base_acp_server.py +0 -0
  447. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/fastacp/base/constants.py +0 -0
  448. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/fastacp/fastacp.py +0 -0
  449. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/fastacp/impl/async_base_acp.py +0 -0
  450. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/fastacp/impl/sync_acp.py +0 -0
  451. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/fastacp/impl/temporal_acp.py +0 -0
  452. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/fastacp/tests/README.md +0 -0
  453. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/fastacp/tests/conftest.py +0 -0
  454. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/fastacp/tests/pytest.ini +0 -0
  455. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/fastacp/tests/run_tests.py +0 -0
  456. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/fastacp/tests/test_base_acp_server.py +0 -0
  457. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/fastacp/tests/test_fastacp_factory.py +0 -0
  458. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/fastacp/tests/test_integration.py +0 -0
  459. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/state_machine/__init__.py +0 -0
  460. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/state_machine/noop_workflow.py +0 -0
  461. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/state_machine/state.py +0 -0
  462. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/state_machine/state_machine.py +0 -0
  463. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/state_machine/state_workflow.py +0 -0
  464. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/utils/__init__.py +0 -0
  465. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/sdk/utils/messages.py +0 -0
  466. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/types/__init__.py +0 -0
  467. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/types/acp.py +0 -0
  468. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/types/agent_configs.py +0 -0
  469. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/types/agent_results.py +0 -0
  470. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/types/converters.py +0 -0
  471. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/types/credentials.py +0 -0
  472. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/types/fastacp.py +0 -0
  473. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/types/files.py +0 -0
  474. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/types/json_rpc.py +0 -0
  475. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/types/llm_messages.py +0 -0
  476. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/types/tracing.py +0 -0
  477. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/utils/__init__.py +0 -0
  478. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/utils/completions.py +0 -0
  479. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/utils/console.py +0 -0
  480. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/utils/debug.py +0 -0
  481. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/utils/dev_tools/__init__.py +0 -0
  482. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/utils/dev_tools/async_messages.py +0 -0
  483. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/utils/io.py +0 -0
  484. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/utils/iterables.py +0 -0
  485. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/utils/json_schema.py +0 -0
  486. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/utils/logging.py +0 -0
  487. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/utils/mcp.py +0 -0
  488. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/utils/model_utils.py +0 -0
  489. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/utils/parsing.py +0 -0
  490. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/utils/regex.py +0 -0
  491. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/utils/registration.py +0 -0
  492. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/lib/utils/temporal.py +0 -0
  493. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/py.typed +0 -0
  494. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/resources/agents.py +0 -0
  495. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/resources/events.py +0 -0
  496. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/resources/messages/__init__.py +0 -0
  497. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/resources/messages/batch.py +0 -0
  498. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/resources/messages/messages.py +0 -0
  499. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/resources/spans.py +0 -0
  500. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/resources/states.py +0 -0
  501. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/resources/tasks.py +0 -0
  502. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/resources/tracker.py +0 -0
  503. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/acp_type.py +0 -0
  504. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/agent.py +0 -0
  505. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/agent_list_params.py +0 -0
  506. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/agent_list_response.py +0 -0
  507. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/agent_rpc_by_name_params.py +0 -0
  508. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/agent_rpc_params.py +0 -0
  509. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/agent_rpc_response.py +0 -0
  510. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/agent_rpc_result.py +0 -0
  511. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/agent_task_tracker.py +0 -0
  512. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/data_content.py +0 -0
  513. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/data_content_param.py +0 -0
  514. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/data_delta.py +0 -0
  515. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/event.py +0 -0
  516. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/event_list_params.py +0 -0
  517. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/event_list_response.py +0 -0
  518. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/message_author.py +0 -0
  519. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/message_create_params.py +0 -0
  520. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/message_list_params.py +0 -0
  521. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/message_list_response.py +0 -0
  522. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/message_style.py +0 -0
  523. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/message_update_params.py +0 -0
  524. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/messages/__init__.py +0 -0
  525. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/messages/batch_create_params.py +0 -0
  526. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/messages/batch_create_response.py +0 -0
  527. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/messages/batch_update_params.py +0 -0
  528. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/messages/batch_update_response.py +0 -0
  529. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/reasoning_content.py +0 -0
  530. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/reasoning_content_delta.py +0 -0
  531. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/reasoning_content_param.py +0 -0
  532. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/reasoning_summary_delta.py +0 -0
  533. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/shared/__init__.py +0 -0
  534. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/shared/delete_response.py +0 -0
  535. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/span.py +0 -0
  536. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/span_create_params.py +0 -0
  537. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/span_list_params.py +0 -0
  538. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/span_list_response.py +0 -0
  539. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/span_update_params.py +0 -0
  540. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/state.py +0 -0
  541. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/state_create_params.py +0 -0
  542. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/state_list_params.py +0 -0
  543. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/state_list_response.py +0 -0
  544. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/state_update_params.py +0 -0
  545. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/task.py +0 -0
  546. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/task_list_params.py +0 -0
  547. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/task_list_response.py +0 -0
  548. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/task_message.py +0 -0
  549. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/task_message_content.py +0 -0
  550. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/task_message_content_param.py +0 -0
  551. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/task_message_delta.py +0 -0
  552. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/task_message_update.py +0 -0
  553. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/task_retrieve_by_name_params.py +0 -0
  554. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/task_retrieve_by_name_response.py +0 -0
  555. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/task_retrieve_params.py +0 -0
  556. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/task_retrieve_response.py +0 -0
  557. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/text_content.py +0 -0
  558. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/text_content_param.py +0 -0
  559. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/text_delta.py +0 -0
  560. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/text_format.py +0 -0
  561. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/tool_request_content.py +0 -0
  562. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/tool_request_content_param.py +0 -0
  563. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/tool_request_delta.py +0 -0
  564. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/tool_response_content.py +0 -0
  565. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/tool_response_content_param.py +0 -0
  566. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/tool_response_delta.py +0 -0
  567. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/tracker_list_params.py +0 -0
  568. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/tracker_list_response.py +0 -0
  569. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/src/agentex/types/tracker_update_params.py +0 -0
  570. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/__init__.py +0 -0
  571. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/api_resources/__init__.py +0 -0
  572. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/api_resources/messages/__init__.py +0 -0
  573. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/api_resources/messages/test_batch.py +0 -0
  574. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/api_resources/test_agents.py +0 -0
  575. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/api_resources/test_events.py +0 -0
  576. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/api_resources/test_messages.py +0 -0
  577. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/api_resources/test_spans.py +0 -0
  578. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/api_resources/test_states.py +0 -0
  579. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/api_resources/test_tasks.py +0 -0
  580. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/api_resources/test_tracker.py +0 -0
  581. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/conftest.py +0 -0
  582. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/lib/__init__.py +0 -0
  583. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/lib/adk/__init__.py +0 -0
  584. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/lib/adk/providers/__init__.py +0 -0
  585. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/lib/adk/providers/test_openai_activities.py +0 -0
  586. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/lib/test_agentex_worker.py +0 -0
  587. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/sample_file.txt +0 -0
  588. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_client.py +0 -0
  589. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_deepcopy.py +0 -0
  590. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_extract_files.py +0 -0
  591. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_files.py +0 -0
  592. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_function_tool.py +0 -0
  593. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_header_forwarding.py +0 -0
  594. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_model_utils.py +0 -0
  595. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_models.py +0 -0
  596. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_qs.py +0 -0
  597. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_required_args.py +0 -0
  598. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_response.py +0 -0
  599. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_streaming.py +0 -0
  600. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_task_cancel.py +0 -0
  601. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_transform.py +0 -0
  602. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_utils/test_datetime_parse.py +0 -0
  603. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_utils/test_proxy.py +0 -0
  604. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/test_utils/test_typing.py +0 -0
  605. {agentex_sdk-0.6.1 → agentex_sdk-0.6.3}/tests/utils.py +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.6.3"
3
+ }
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.6.3 (2025-11-06)
4
+
5
+ Full Changelog: [v0.6.2...v0.6.3](https://github.com/scaleapi/scale-agentex-python/compare/v0.6.2...v0.6.3)
6
+
7
+ ## 0.6.2 (2025-11-05)
8
+
9
+ Full Changelog: [v0.6.1...v0.6.2](https://github.com/scaleapi/scale-agentex-python/compare/v0.6.1...v0.6.2)
10
+
11
+ ### Features
12
+
13
+ * **api:** update via SDK Studio ([b732dfa](https://github.com/scaleapi/scale-agentex-python/commit/b732dfac50cacc90c84a751fd6c75d18fa5b43ed))
14
+
3
15
  ## 0.6.1 (2025-11-05)
4
16
 
5
17
  Full Changelog: [v0.6.0...v0.6.1](https://github.com/scaleapi/scale-agentex-python/compare/v0.6.0...v0.6.1)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: agentex-sdk
3
- Version: 0.6.1
3
+ Version: 0.6.3
4
4
  Summary: The official Python library for the agentex API
5
5
  Project-URL: Homepage, https://github.com/scaleapi/scale-agentex-python
6
6
  Project-URL: Repository, https://github.com/scaleapi/scale-agentex-python
@@ -152,3 +152,16 @@ Methods:
152
152
  - <code title="get /tracker/{tracker_id}">client.tracker.<a href="./src/agentex/resources/tracker.py">retrieve</a>(tracker_id) -> <a href="./src/agentex/types/agent_task_tracker.py">AgentTaskTracker</a></code>
153
153
  - <code title="put /tracker/{tracker_id}">client.tracker.<a href="./src/agentex/resources/tracker.py">update</a>(tracker_id, \*\*<a href="src/agentex/types/tracker_update_params.py">params</a>) -> <a href="./src/agentex/types/agent_task_tracker.py">AgentTaskTracker</a></code>
154
154
  - <code title="get /tracker">client.tracker.<a href="./src/agentex/resources/tracker.py">list</a>(\*\*<a href="src/agentex/types/tracker_list_params.py">params</a>) -> <a href="./src/agentex/types/tracker_list_response.py">TrackerListResponse</a></code>
155
+
156
+ # DeploymentHistory
157
+
158
+ Types:
159
+
160
+ ```python
161
+ from agentex.types import DeploymentHistory, DeploymentHistoryListResponse
162
+ ```
163
+
164
+ Methods:
165
+
166
+ - <code title="get /deployment-history/{deployment_id}">client.deployment_history.<a href="./src/agentex/resources/deployment_history.py">retrieve</a>(deployment_id) -> <a href="./src/agentex/types/deployment_history.py">DeploymentHistory</a></code>
167
+ - <code title="get /deployment-history">client.deployment_history.<a href="./src/agentex/resources/deployment_history.py">list</a>(\*\*<a href="src/agentex/types/deployment_history_list_params.py">params</a>) -> <a href="./src/agentex/types/deployment_history_list_response.py">DeploymentHistoryListResponse</a></code>
@@ -61,7 +61,7 @@ agent:
61
61
 
62
62
  # Type of ACP to use
63
63
  # sync: Simple synchronous ACP implementation
64
- # agentic: Advanced ACP with sub-types "base" or "temporal" (requires config)
64
+ # async: Asynchronous, non-blocking ACP implementation
65
65
  acp_type: sync
66
66
 
67
67
  # Description of what your agent does
@@ -44,6 +44,6 @@ Three handlers instead of one, giving you full control over task lifecycle. Task
44
44
  - Building towards production systems
45
45
 
46
46
  ## Why This Matters
47
- The task-based model is the foundation of production agents. Unlike sync agents where each message is independent, agentic agents maintain persistent tasks that can receive multiple events, store state, and have full lifecycle management. This is the stepping stone to Temporal-based agents.
47
+ The task-based model is the foundation of production agents. Unlike sync agents where each message is independent, async agents maintain persistent tasks that can receive multiple events, store state, and have full lifecycle management. This is the stepping stone to Temporal-based agents.
48
48
 
49
49
  **Next:** [010_multiturn](../010_multiturn/) - Add conversation memory
@@ -106,7 +106,7 @@ deployment:
106
106
  global:
107
107
  agent:
108
108
  name: "ab000-hello-acp"
109
- description: "An AgentEx agent that is not intelligent. It just shows how to implement the base agentic ACP type."
109
+ description: "An AgentEx agent that is not intelligent. It just shows how to implement the base async ACP type."
110
110
 
111
111
  # Default replica count
112
112
  replicaCount: 1
@@ -1,27 +1,27 @@
1
- # [Agentic] Multiturn
1
+ # [Async] Multiturn
2
2
 
3
- Handle multi-turn conversations in agentic agents with task-based state management. Each task maintains its own conversation history automatically.
3
+ Handle multi-turn conversations in async agents with task-based state management. Each task maintains its own conversation history automatically.
4
4
 
5
5
  ## What You'll Learn
6
6
  - How tasks maintain conversation state across multiple exchanges
7
- - Difference between sync and agentic multiturn patterns
7
+ - Difference between sync and async multiturn patterns
8
8
  - Building stateful conversational agents with minimal code
9
9
 
10
10
  ## Prerequisites
11
11
  - Development environment set up (see [main repo README](https://github.com/scaleapi/scale-agentex))
12
12
  - Backend services running: `make dev` from repository root
13
- - Understanding of basic agentic agents (see [000_hello_acp](../000_hello_acp/))
13
+ - Understanding of basic async agents (see [000_hello_acp](../000_hello_acp/))
14
14
 
15
15
  ## Quick Start
16
16
 
17
17
  ```bash
18
- cd examples/tutorials/10_agentic/00_base/010_multiturn
18
+ cd examples/tutorials/10_async/00_base/010_multiturn
19
19
  uv run agentex agents run --manifest manifest.yaml
20
20
  ```
21
21
 
22
22
  ## Key Pattern
23
23
 
24
- Unlike sync agents where you manually track conversation history, agentic agents automatically maintain state within each task:
24
+ Unlike sync agents where you manually track conversation history, async agents automatically maintain state within each task:
25
25
 
26
26
  ```python
27
27
  @app.on_task_event_send()
@@ -29,7 +29,7 @@
29
29
  "metadata": {},
30
30
  "outputs": [],
31
31
  "source": [
32
- "# (REQUIRED) Create a new task. For Agentic agents, you must create a task for messages to be associated with.\n",
32
+ "# (REQUIRED) Create a new task. For Async agents, you must create a task for messages to be associated with.\n",
33
33
  "import uuid\n",
34
34
  "\n",
35
35
  "rpc_response = client.agents.create_task(\n",
@@ -1,21 +1,21 @@
1
1
  # [Agentic] Streaming
2
2
 
3
- Stream responses in agentic agents using `adk.messages.create()` to send progressive updates. More flexible than sync streaming since you can send multiple messages at any time.
3
+ Stream responses in async agents using `adk.messages.create()` to send progressive updates. More flexible than sync streaming since you can send multiple messages at any time.
4
4
 
5
5
  ## What You'll Learn
6
6
  - How to stream with explicit message creation
7
- - Difference between sync and agentic streaming patterns
7
+ - Difference between sync and async streaming patterns
8
8
  - When to send multiple messages vs single streamed response
9
9
 
10
10
  ## Prerequisites
11
11
  - Development environment set up (see [main repo README](https://github.com/scaleapi/scale-agentex))
12
12
  - Backend services running: `make dev` from repository root
13
- - Understanding of agentic basics (see [000_hello_acp](../000_hello_acp/))
13
+ - Understanding of async basics (see [000_hello_acp](../000_hello_acp/))
14
14
 
15
15
  ## Quick Start
16
16
 
17
17
  ```bash
18
- cd examples/tutorials/10_agentic/00_base/020_streaming
18
+ cd examples/tutorials/10_async/00_base/020_streaming
19
19
  uv run agentex agents run --manifest manifest.yaml
20
20
  ```
21
21
 
@@ -33,7 +33,7 @@ async def handle_event_send(params: SendEventParams):
33
33
  await adk.messages.create(task_id=task_id, content=...)
34
34
  ```
35
35
 
36
- Unlike sync streaming (which uses async generators), agentic streaming uses explicit message creation calls, giving you more control over when and what to send.
36
+ Unlike sync streaming (which uses async generators), async streaming uses explicit message creation calls, giving you more control over when and what to send.
37
37
 
38
38
  ## When to Use
39
39
  - Multi-step processes with intermediate results
@@ -11,12 +11,12 @@ Add observability to your agents with spans and traces using `adk.tracing.start_
11
11
  ## Prerequisites
12
12
  - Development environment set up (see [main repo README](https://github.com/scaleapi/scale-agentex))
13
13
  - Backend services running: `make dev` from repository root
14
- - Understanding of agentic agents (see [000_hello_acp](../000_hello_acp/))
14
+ - Understanding of async agents (see [000_hello_acp](../000_hello_acp/))
15
15
 
16
16
  ## Quick Start
17
17
 
18
18
  ```bash
19
- cd examples/tutorials/10_agentic/00_base/030_tracing
19
+ cd examples/tutorials/10_async/00_base/030_tracing
20
20
  uv run agentex agents run --manifest manifest.yaml
21
21
  ```
22
22
 
@@ -11,12 +11,12 @@ Agents are just Python code - integrate any SDK you want (OpenAI, Anthropic, Lan
11
11
  ## Prerequisites
12
12
  - Development environment set up (see [main repo README](https://github.com/scaleapi/scale-agentex))
13
13
  - Backend services running: `make dev` from repository root
14
- - Understanding of agentic agents (see [000_hello_acp](../000_hello_acp/))
14
+ - Understanding of async agents (see [000_hello_acp](../000_hello_acp/))
15
15
 
16
16
  ## Quick Start
17
17
 
18
18
  ```bash
19
- cd examples/tutorials/10_agentic/00_base/040_other_sdks
19
+ cd examples/tutorials/10_async/00_base/040_other_sdks
20
20
  uv run agentex agents run --manifest manifest.yaml
21
21
  ```
22
22
 
@@ -1,9 +1,9 @@
1
1
  # [Agentic] Batch Events
2
2
 
3
- Demonstrates limitations of the base agentic protocol with concurrent event processing. When multiple events arrive rapidly, base agentic agents handle them sequentially, which can cause issues.
3
+ Demonstrates limitations of the base async protocol with concurrent event processing. When multiple events arrive rapidly, base async agents handle them sequentially, which can cause issues.
4
4
 
5
5
  ## What You'll Learn
6
- - Limitations of non-Temporal agentic agents
6
+ - Limitations of non-Temporal async agents
7
7
  - Race conditions and ordering issues in concurrent scenarios
8
8
  - When you need workflow orchestration
9
9
  - Why this motivates Temporal adoption
@@ -11,12 +11,12 @@ Demonstrates limitations of the base agentic protocol with concurrent event proc
11
11
  ## Prerequisites
12
12
  - Development environment set up (see [main repo README](https://github.com/scaleapi/scale-agentex))
13
13
  - Backend services running: `make dev` from repository root
14
- - Understanding of agentic patterns (see previous tutorials)
14
+ - Understanding of async patterns (see previous tutorials)
15
15
 
16
16
  ## Quick Start
17
17
 
18
18
  ```bash
19
- cd examples/tutorials/10_agentic/00_base/080_batch_events
19
+ cd examples/tutorials/10_async/00_base/080_batch_events
20
20
  uv run agentex agents run --manifest manifest.yaml
21
21
  ```
22
22
 
@@ -27,7 +27,7 @@ This tutorial shows **when you need Temporal**. If your agent needs to:
27
27
  - Process multiple events in parallel safely
28
28
  - Maintain consistent state under concurrent load
29
29
 
30
- Then you should use Temporal workflows (see tutorials 10_agentic/10_temporal/) which provide:
30
+ Then you should use Temporal workflows (see tutorials 10_async/10_temporal/) which provide:
31
31
  - Deterministic event ordering
32
32
  - Safe concurrent processing
33
33
  - Guaranteed state consistency
@@ -35,7 +35,7 @@ Then you should use Temporal workflows (see tutorials 10_agentic/10_temporal/) w
35
35
  This is the "breaking point" tutorial that motivates moving to Temporal for production agents.
36
36
 
37
37
  ## When to Use (This Pattern)
38
- This tutorial shows what NOT to use for production. Use base agentic agents only when:
38
+ This tutorial shows what NOT to use for production. Use base async agents only when:
39
39
  - Events are infrequent (< 1 per second)
40
40
  - Order doesn't matter
41
41
  - State consistency isn't critical
@@ -49,13 +49,13 @@ The system uses a shared build configuration with type-safe interfaces:
49
49
  - Backend services running: `make dev` from repository root
50
50
  - Python 3.12+ and uv package manager
51
51
  - OpenAI API key (set `OPENAI_API_KEY` or create `.env` file)
52
- - Understanding of agentic patterns (see previous tutorials)
52
+ - Understanding of async patterns (see previous tutorials)
53
53
 
54
54
  ### Running the System
55
55
 
56
56
  1. **Start all agents**:
57
57
  ```bash
58
- cd examples/tutorials/10_agentic/00_base/090_multi_agent_non_temporal
58
+ cd examples/tutorials/10_async/00_base/090_multi_agent_non_temporal
59
59
  ./start-agents.sh start
60
60
  ```
61
61
 
@@ -18,7 +18,7 @@ CRITIC_PORT=8002
18
18
  FORMATTER_PORT=8003
19
19
 
20
20
  # Base directory
21
- BASE_DIR="examples/tutorials/10_agentic/00_base/090_multi_agent_non_temporal"
21
+ BASE_DIR="examples/tutorials/10_async/00_base/090_multi_agent_non_temporal"
22
22
 
23
23
  echo -e "${BLUE}🎭 Multi-Agent Content Assembly Line (Flattened)${NC}"
24
24
  echo -e "${BLUE}===============================================${NC}"
@@ -6,18 +6,18 @@ Temporal workflows make agents durable - they survive restarts and can run indef
6
6
  - Building durable agents with Temporal workflows
7
7
  - The workflow and signal pattern
8
8
  - How workflows survive failures and resume automatically
9
- - When to use Temporal vs base agentic agents
9
+ - When to use Temporal vs base async agents
10
10
 
11
11
  ## Prerequisites
12
12
  - Development environment set up (see [main repo README](https://github.com/scaleapi/scale-agentex))
13
13
  - Backend services running: `make dev` from repository root (includes Temporal)
14
14
  - Temporal UI available at http://localhost:8233
15
- - Understanding of base agentic agents (see [../../00_base/080_batch_events](../../00_base/080_batch_events/) to understand why Temporal)
15
+ - Understanding of base async agents (see [../../00_base/080_batch_events](../../00_base/080_batch_events/) to understand why Temporal)
16
16
 
17
17
  ## Quick Start
18
18
 
19
19
  ```bash
20
- cd examples/tutorials/10_agentic/10_temporal/000_hello_acp
20
+ cd examples/tutorials/10_async/10_temporal/000_hello_acp
21
21
  uv run agentex agents run --manifest manifest.yaml
22
22
  ```
23
23
 
@@ -17,7 +17,7 @@ Combine streaming responses, multi-turn chat, tool calling, and tracing - all wi
17
17
  ## Quick Start
18
18
 
19
19
  ```bash
20
- cd examples/tutorials/10_agentic/10_temporal/010_agent_chat
20
+ cd examples/tutorials/10_async/10_temporal/010_agent_chat
21
21
  uv run agentex agents run --manifest manifest.yaml
22
22
  ```
23
23
 
@@ -33,7 +33,7 @@ uv run agentex agents run --manifest manifest.yaml
33
33
 
34
34
  ## Key Insight
35
35
 
36
- In base agentic agents, all this state lives in memory and is lost on crash. With Temporal, the entire conversation - history, tool calls, intermediate state - is durably persisted. The agent can pick up a conversation that paused days ago as if no time passed.
36
+ In base async agents, all this state lives in memory and is lost on crash. With Temporal, the entire conversation - history, tool calls, intermediate state - is durably persisted. The agent can pick up a conversation that paused days ago as if no time passed.
37
37
 
38
38
  ## When to Use
39
39
  - Production chatbots with tool capabilities
@@ -234,7 +234,7 @@ class At010AgentChatWorkflow(BaseWorkflow):
234
234
  "to provide accurate and well-reasoned responses."
235
235
  ),
236
236
  parent_span_id=span.id if span else None,
237
- model="gpt-5-mini",
237
+ model="gpt-4o-mini",
238
238
  model_settings=ModelSettings(
239
239
  # Include reasoning items in the response (IDs, summaries)
240
240
  # response_include=["reasoning.encrypted_content"],
@@ -7,7 +7,7 @@ This test suite demonstrates how to test agents that integrate:
7
7
  - Multi-turn conversations with state management
8
8
  - Tool usage (calculator and web search via MCP)
9
9
 
10
- Key differences from base agentic (040_other_sdks):
10
+ Key differences from base async (040_other_sdks):
11
11
  1. Temporal Integration: Uses Temporal workflows for durable execution
12
12
  2. State Management: State is managed within the workflow instance
13
13
  3. No Race Conditions: Temporal ensures sequential event processing
@@ -17,7 +17,7 @@ Build complex multi-state workflows using state machines with Temporal. This tut
17
17
  ## Quick Start
18
18
 
19
19
  ```bash
20
- cd examples/tutorials/10_agentic/10_temporal/020_state_machine
20
+ cd examples/tutorials/10_async/10_temporal/020_state_machine
21
21
  uv run agentex agents run --manifest manifest.yaml
22
22
  ```
23
23
 
@@ -73,7 +73,7 @@ agent:
73
73
 
74
74
  # Description of what your agent does
75
75
  # Helps with documentation and discovery
76
- description: An AgentEx agentthat demonstrates how to uose state machines to manage complex agentic workflows
76
+ description: An AgentEx agentthat demonstrates how to uose state machines to manage complex async workflows
77
77
 
78
78
  # Temporal workflow configuration
79
79
  # This enables your agent to run as a Temporal workflow for long-running tasks
@@ -122,7 +122,7 @@ deployment:
122
122
  global:
123
123
  agent:
124
124
  name: "at020-state-machine"
125
- description: "An AgentEx agentthat demonstrates how to uose state machines to manage complex agentic workflows"
125
+ description: "An AgentEx agentthat demonstrates how to uose state machines to manage complex async workflows"
126
126
 
127
127
  # Default replica count
128
128
  replicaCount: 1
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
5
5
  [project]
6
6
  name = "at020-state-machine"
7
7
  version = "0.1.0"
8
- description = "An AgentEx agentthat demonstrates how to uose state machines to manage complex agentic workflows"
8
+ description = "An AgentEx agentthat demonstrates how to uose state machines to manage complex async workflows"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.12"
11
11
  dependencies = [
@@ -18,7 +18,7 @@ Learn how to extend Temporal workflows with custom activities for external opera
18
18
 
19
19
  **Terminal 1 - Start Worker:**
20
20
  ```bash
21
- cd examples/tutorials/10_agentic/10_temporal/030_custom_activities
21
+ cd examples/tutorials/10_async/10_temporal/030_custom_activities
22
22
  uv run python project/run_worker.py
23
23
  ```
24
24
 
@@ -17,7 +17,7 @@ This tutorial demonstrates how to implement streaming multiturn tool-enabled cha
17
17
  ## Quick Start
18
18
 
19
19
  ```bash
20
- cd examples/tutorials/10_agentic/10_temporal/050_agent_chat_guardrails
20
+ cd examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails
21
21
  uv run agentex agents run --manifest manifest.yaml
22
22
  ```
23
23
 
@@ -5,7 +5,7 @@ from agentex.lib.sdk.fastacp.fastacp import FastACP
5
5
 
6
6
  # Create the ACP server
7
7
  acp = FastACP.create(
8
- acp_type="agentic",
8
+ acp_type="async",
9
9
  config=TemporalACPConfig(
10
10
  # When deployed to the cluster, the Temporal address will automatically be set to the cluster address
11
11
  # For local development, we set the address manually to talk to the local Temporal service set up via docker compose
@@ -18,9 +18,7 @@
18
18
  "id": "d1c309d6",
19
19
  "metadata": {},
20
20
  "outputs": [],
21
- "source": [
22
- "AGENT_NAME = \"example-tutorial\""
23
- ]
21
+ "source": "AGENT_NAME = \"at060-open-ai-agents-sdk-hello-world\""
24
22
  },
25
23
  {
26
24
  "cell_type": "code",
@@ -69,7 +69,7 @@ agent:
69
69
 
70
70
  # Unique name for your agent
71
71
  # Used for task routing and monitoring
72
- name: example-tutorial
72
+ name: at060-open-ai-agents-sdk-hello-world
73
73
 
74
74
  # Description of what your agent does
75
75
  # Helps with documentation and discovery
@@ -82,12 +82,12 @@ agent:
82
82
  workflows:
83
83
  # Name of the workflow class
84
84
  # Must match the @workflow.defn name in your workflow.py
85
- - name: example-tutorial
85
+ - name: at060-open-ai-agents-sdk-hello-world
86
86
 
87
87
  # Queue name for task distribution
88
88
  # Used by Temporal to route tasks to your agent
89
89
  # Convention: <agent_name>_task_queue
90
- queue_name: example_tutorial_queue
90
+ queue_name: at060_open_ai_agents_sdk_hello_world_queue
91
91
 
92
92
  # Optional: Credentials mapping
93
93
  # Maps Kubernetes secrets to environment variables
@@ -96,9 +96,9 @@ agent:
96
96
  - env_var_name: REDIS_URL
97
97
  secret_name: redis-url-secret
98
98
  secret_key: url
99
- # - env_var_name: OPENAI_API_KEY
100
- # secret_name: openai-api-key
101
- # secret_key: api-key
99
+ # - env_var_name: OPENAI_API_KEY
100
+ # secret_name: openai-api-key
101
+ # secret_key: api-key
102
102
 
103
103
  # Optional: Set Environment variables for running your agent locally as well
104
104
  # as for deployment later on
@@ -124,7 +124,7 @@ deployment:
124
124
  # These can be overridden using --override-file with custom configuration files
125
125
  global:
126
126
  agent:
127
- name: "example-tutorial"
127
+ name: "at060-open-ai-agents-sdk-hello-world"
128
128
  description: "An AgentEx agent"
129
129
 
130
130
  # Default replica count
@@ -137,4 +137,4 @@ deployment:
137
137
  memory: "1Gi"
138
138
  limits:
139
139
  cpu: "1000m"
140
- memory: "2Gi"
140
+ memory: "2Gi"
@@ -34,6 +34,13 @@ if os.getenv("AGENTEX_DEBUG_ENABLED") == "true":
34
34
 
35
35
  from agentex.lib.types.fastacp import TemporalACPConfig
36
36
  from agentex.lib.sdk.fastacp.fastacp import FastACP
37
+ from agentex.lib.core.temporal.plugins.openai_agents.models.temporal_streaming_model import (
38
+ TemporalStreamingModelProvider,
39
+ )
40
+ from agentex.lib.core.temporal.plugins.openai_agents.interceptors.context_interceptor import ContextInterceptor
41
+
42
+ context_interceptor = ContextInterceptor()
43
+ temporal_streaming_model_provider = TemporalStreamingModelProvider()
37
44
 
38
45
  # Create the ACP server
39
46
  acp = FastACP.create(
@@ -44,7 +51,8 @@ acp = FastACP.create(
44
51
  # We are also adding the Open AI Agents SDK plugin to the ACP.
45
52
  type="temporal",
46
53
  temporal_address=os.getenv("TEMPORAL_ADDRESS", "localhost:7233"),
47
- plugins=[OpenAIAgentsPlugin()]
54
+ plugins=[OpenAIAgentsPlugin(model_provider=temporal_streaming_model_provider)],
55
+ interceptors=[context_interceptor]
48
56
  )
49
57
  )
50
58
 
@@ -0,0 +1,69 @@
1
+ import asyncio
2
+
3
+ from temporalio.contrib.openai_agents import OpenAIAgentsPlugin
4
+
5
+ from project.workflow import At060OpenAiAgentsSdkHelloWorldWorkflow
6
+ from agentex.lib.utils.debug import setup_debug_if_enabled
7
+ from agentex.lib.utils.logging import make_logger
8
+ from agentex.lib.environment_variables import EnvironmentVariables
9
+ from agentex.lib.core.temporal.activities import get_all_activities
10
+ from agentex.lib.core.temporal.workers.worker import AgentexWorker
11
+ from agentex.lib.core.temporal.plugins.openai_agents.models.temporal_streaming_model import (
12
+ TemporalStreamingModelProvider,
13
+ )
14
+ from agentex.lib.core.temporal.plugins.openai_agents.interceptors.context_interceptor import ContextInterceptor
15
+
16
+ environment_variables = EnvironmentVariables.refresh()
17
+
18
+ logger = make_logger(__name__)
19
+
20
+
21
+ async def main():
22
+ # Setup debug mode if enabled
23
+ setup_debug_if_enabled()
24
+
25
+ task_queue_name = environment_variables.WORKFLOW_TASK_QUEUE
26
+ if task_queue_name is None:
27
+ raise ValueError("WORKFLOW_TASK_QUEUE is not set")
28
+
29
+ # Add activities to the worker
30
+ all_activities = get_all_activities() + [] # add your own activities here
31
+
32
+ # ============================================================================
33
+ # STREAMING SETUP: Interceptor + Model Provider
34
+ # ============================================================================
35
+ # This is where the streaming magic is configured! Two key components:
36
+ #
37
+ # 1. ContextInterceptor
38
+ # - Threads task_id through activity headers using Temporal's interceptor pattern
39
+ # - Outbound: Reads _task_id from workflow instance, injects into activity headers
40
+ # - Inbound: Extracts task_id from headers, sets streaming_task_id ContextVar
41
+ # - This enables runtime context without forking the Temporal plugin!
42
+ #
43
+ # 2. TemporalStreamingModelProvider
44
+ # - Returns TemporalStreamingModel instances that read task_id from ContextVar
45
+ # - TemporalStreamingModel.get_response() streams tokens to Redis in real-time
46
+ # - Still returns complete response to Temporal for determinism/replay safety
47
+ # - Uses AgentEx ADK streaming infrastructure (Redis XADD to stream:{task_id})
48
+ #
49
+ # Together, these enable real-time LLM streaming while maintaining Temporal's
50
+ # durability guarantees. No forked components - uses STANDARD OpenAIAgentsPlugin!
51
+ context_interceptor = ContextInterceptor()
52
+ temporal_streaming_model_provider = TemporalStreamingModelProvider()
53
+
54
+ # Create a worker with automatic tracing
55
+ # IMPORTANT: We use the STANDARD temporalio.contrib.openai_agents.OpenAIAgentsPlugin
56
+ # No forking needed! The interceptor + model provider handle all streaming logic.
57
+ worker = AgentexWorker(
58
+ task_queue=task_queue_name,
59
+ plugins=[OpenAIAgentsPlugin(model_provider=temporal_streaming_model_provider)],
60
+ interceptors=[context_interceptor]
61
+ )
62
+
63
+ await worker.run(
64
+ activities=all_activities,
65
+ workflow=At060OpenAiAgentsSdkHelloWorldWorkflow,
66
+ )
67
+
68
+ if __name__ == "__main__":
69
+ asyncio.run(main())