agentex-sdk 0.6.5__tar.gz → 0.6.7__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.
- agentex_sdk-0.6.7/.release-please-manifest.json +3 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/CHANGELOG.md +19 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/CONTRIBUTING.md +0 -25
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/PKG-INFO +4 -3
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/README.md +2 -2
- agentex_sdk-0.6.7/examples/demos/procurement_agent/.gitignore +63 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/Dockerfile +48 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/README.md +412 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/dev.ipynb +126 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/environments.yaml +64 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/manifest.yaml +144 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/acp.py +59 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/activities/__init__.py +1 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/activities/activities.py +570 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/agents/__init__.py +1 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/agents/extract_learnings_agent.py +53 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/agents/procurement_agent.py +502 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/agents/summarization_agent.py +53 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/data/__init__.py +1 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/data/database.py +686 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/models/__init__.py +1 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/models/events.py +46 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/run_worker.py +96 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/scripts/__init__.py +1 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/scripts/send_test_events.py +295 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/utils/__init__.py +5 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/utils/learning_extraction.py +69 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/utils/summarization.py +205 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/project/workflow.py +403 -0
- agentex_sdk-0.6.7/examples/demos/procurement_agent/pyproject.toml +36 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/000_hello_acp/tests/test_agent.py +1 -1
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/040_other_sdks/project/acp.py +9 -18
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/040_other_sdks/tests/test_agent.py +17 -4
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/010_agent_chat/tests/test_agent.py +24 -5
- agentex_sdk-0.6.7/examples/tutorials/10_async/10_temporal/030_custom_activities/.dockerignore +43 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/project/tools.py +4 -9
- agentex_sdk-0.6.5/examples/tutorials/run_all_async_tests.sh → agentex_sdk-0.6.7/examples/tutorials/run_agent_test.sh +146 -105
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/pyproject.toml +3 -2
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_models.py +37 -15
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_utils/_sync.py +3 -31
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_version.py +1 -1
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/default/manifest.yaml.j2 +5 -6
- agentex_sdk-0.6.7/src/agentex/lib/cli/templates/default/project/acp.py.j2 +56 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/sync/manifest.yaml.j2 +6 -7
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/temporal/manifest.yaml.j2 +4 -8
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/plugins/openai_agents/models/temporal_streaming_model.py +29 -1
- agentex_sdk-0.6.7/tests/lib/adk/providers/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_models.py +4 -4
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/uv.lock +2 -2
- agentex_sdk-0.6.5/.release-please-manifest.json +0 -3
- agentex_sdk-0.6.5/src/agentex/lib/cli/templates/default/project/acp.py.j2 +0 -29
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/.gitignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/CLAUDE.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/LICENSE +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/SECURITY.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/api.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/bin/check-release-environment +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/bin/publish-pypi +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/.keep +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/10_async/00_base/080_batch_events → agentex_sdk-0.6.7/examples/demos/procurement_agent}/.dockerignore +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/00_sync/000_hello_acp → agentex_sdk-0.6.7/examples/demos/procurement_agent}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/launch-tutorials.sh +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/000_hello_acp/.dockerignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/000_hello_acp/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/000_hello_acp/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/000_hello_acp/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/000_hello_acp/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/00_sync/010_multiturn → agentex_sdk-0.6.7/examples/tutorials/00_sync/000_hello_acp}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/000_hello_acp/project/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/000_hello_acp/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/000_hello_acp/tests/test_agent.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/010_multiturn/.dockerignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/010_multiturn/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/010_multiturn/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/010_multiturn/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/010_multiturn/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/00_sync/020_streaming → agentex_sdk-0.6.7/examples/tutorials/00_sync/010_multiturn}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/010_multiturn/project/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/010_multiturn/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/010_multiturn/tests/test_agent.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/020_streaming/.dockerignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/020_streaming/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/020_streaming/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/020_streaming/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/020_streaming/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/10_async/00_base/000_hello_acp → agentex_sdk-0.6.7/examples/tutorials/00_sync/020_streaming}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/020_streaming/project/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/020_streaming/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/00_sync/020_streaming/tests/test_agent.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/000_hello_acp/.dockerignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/000_hello_acp/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/000_hello_acp/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/000_hello_acp/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/000_hello_acp/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/10_async/00_base/010_multiturn → agentex_sdk-0.6.7/examples/tutorials/10_async/00_base/000_hello_acp}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/000_hello_acp/project/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/000_hello_acp/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/010_multiturn/.dockerignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/010_multiturn/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/010_multiturn/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/010_multiturn/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/010_multiturn/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/10_async/00_base/020_streaming → agentex_sdk-0.6.7/examples/tutorials/10_async/00_base/010_multiturn}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/010_multiturn/project/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/010_multiturn/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/010_multiturn/tests/test_agent.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/020_streaming/.dockerignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/020_streaming/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/020_streaming/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/020_streaming/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/020_streaming/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/10_async/00_base/030_tracing → agentex_sdk-0.6.7/examples/tutorials/10_async/00_base/020_streaming}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/020_streaming/project/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/020_streaming/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/020_streaming/tests/test_agent.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/030_tracing/.dockerignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/030_tracing/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/030_tracing/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/030_tracing/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/030_tracing/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/10_async/00_base/040_other_sdks → agentex_sdk-0.6.7/examples/tutorials/10_async/00_base/030_tracing}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/030_tracing/project/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/030_tracing/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/030_tracing/tests/test_agent.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/040_other_sdks/.dockerignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/040_other_sdks/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/040_other_sdks/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/040_other_sdks/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/040_other_sdks/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/10_async/00_base/080_batch_events → agentex_sdk-0.6.7/examples/tutorials/10_async/00_base/040_other_sdks}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/040_other_sdks/pyproject.toml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/10_async/10_temporal/030_custom_activities → agentex_sdk-0.6.7/examples/tutorials/10_async/00_base/080_batch_events}/.dockerignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/080_batch_events/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/080_batch_events/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/080_batch_events/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/080_batch_events/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/10_async/10_temporal/000_hello_acp → agentex_sdk-0.6.7/examples/tutorials/10_async/00_base/080_batch_events}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/080_batch_events/project/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/080_batch_events/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/080_batch_events/test_batch_events.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/080_batch_events/tests/test_agent.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/creator.yaml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/critic.yaml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/formatter.yaml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/orchestrator.yaml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/project/creator.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/project/critic.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/project/formatter.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/project/models.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/project/orchestrator.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/project/state_machines/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/project/state_machines/content_workflow.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/start-agents.sh +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/00_base/090_multi_agent_non_temporal/tests/test_agent.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/000_hello_acp/.dockerignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/000_hello_acp/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/000_hello_acp/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/000_hello_acp/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/000_hello_acp/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/10_async/10_temporal/010_agent_chat → agentex_sdk-0.6.7/examples/tutorials/10_async/10_temporal/000_hello_acp}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/000_hello_acp/project/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/000_hello_acp/project/run_worker.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/000_hello_acp/project/workflow.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/000_hello_acp/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/000_hello_acp/tests/test_agent.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/010_agent_chat/.dockerignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/010_agent_chat/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/010_agent_chat/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/010_agent_chat/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/010_agent_chat/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/10_async/10_temporal/020_state_machine → agentex_sdk-0.6.7/examples/tutorials/10_async/10_temporal/010_agent_chat}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/010_agent_chat/project/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/010_agent_chat/project/run_worker.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/010_agent_chat/project/workflow.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/010_agent_chat/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/020_state_machine/.dockerignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/020_state_machine/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/020_state_machine/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/020_state_machine/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/020_state_machine/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/10_async/10_temporal/030_custom_activities → agentex_sdk-0.6.7/examples/tutorials/10_async/10_temporal/020_state_machine}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/020_state_machine/project/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/020_state_machine/project/run_worker.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/020_state_machine/project/state_machines/deep_research.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/020_state_machine/project/workflow.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/020_state_machine/project/workflows/deep_research/clarify_user_query.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/020_state_machine/project/workflows/deep_research/performing_deep_research.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/020_state_machine/project/workflows/deep_research/waiting_for_user_input.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/020_state_machine/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/020_state_machine/tests/test_agent.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/030_custom_activities/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/030_custom_activities/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/030_custom_activities/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/030_custom_activities/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails → agentex_sdk-0.6.7/examples/tutorials/10_async/10_temporal/030_custom_activities}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/030_custom_activities/project/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/030_custom_activities/project/custom_activites.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/030_custom_activities/project/run_worker.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/030_custom_activities/project/shared_models.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/030_custom_activities/project/workflow.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/030_custom_activities/project/workflow_utils.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/030_custom_activities/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/030_custom_activities/tests/test_agent.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/.dockerignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world → agentex_sdk-0.6.7/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/project/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/project/run_worker.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/project/workflow.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/050_agent_chat_guardrails/tests/test_agent.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/.dockerignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/environments.yaml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools → agentex_sdk-0.6.7/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/project/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/project/run_worker.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/project/workflow.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/tests/test_agent.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/.dockerignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/environments.yaml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop → agentex_sdk-0.6.7/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools}/project/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/project/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/project/activities.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/project/run_worker.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/project/workflow.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/tests/test_agent.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/.dockerignore +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/Dockerfile +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/dev.ipynb +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/environments.yaml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/manifest.yaml +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib → agentex_sdk-0.6.7/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project/activities.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project/child_workflow.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project/run_worker.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project/tools.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project/workflow.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/pyproject.toml +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/tests/test_agent.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/TEST_RUNNER_README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/pytest.ini +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/test_utils/async_utils.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/examples/tutorials/test_utils/sync.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/noxfile.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/release-please-config.json +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/requirements-dev.lock +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/requirements.lock +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_base_client.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_client.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_compat.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_constants.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_exceptions.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_files.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_qs.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_resource.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_response.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_streaming.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_types.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_utils/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_utils/_compat.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_utils/_datetime_parse.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_utils/_logs.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_utils/_proxy.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_utils/_reflection.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_utils/_resources_proxy.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_utils/_streams.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_utils/_transform.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_utils/_typing.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/_utils/_utils.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/.keep +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/adk/_modules → agentex_sdk-0.6.7/src/agentex/lib}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/__init__.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/adk/providers → agentex_sdk-0.6.7/src/agentex/lib/adk}/_modules/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/_modules/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/_modules/agent_task_tracker.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/_modules/agents.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/_modules/events.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/_modules/messages.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/_modules/state.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/_modules/streaming.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/_modules/tasks.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/_modules/tracing.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/providers/__init__.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/adk/utils → agentex_sdk-0.6.7/src/agentex/lib/adk/providers}/_modules/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/providers/_modules/litellm.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/providers/_modules/openai.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/providers/_modules/sgp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/providers/_modules/sync_provider.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/utils/__init__.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/cli → agentex_sdk-0.6.7/src/agentex/lib/adk/utils/_modules}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/utils/_modules/client.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/adk/utils/_modules/templating.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/cli/commands → agentex_sdk-0.6.7/src/agentex/lib/cli}/__init__.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/cli/handlers → agentex_sdk-0.6.7/src/agentex/lib/cli/commands}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/commands/agents.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/commands/init.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/commands/main.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/commands/secrets.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/commands/tasks.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/commands/uv.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/debug/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/debug/debug_config.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/debug/debug_handlers.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/cli/utils → agentex_sdk-0.6.7/src/agentex/lib/cli/handlers}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/handlers/agent_handlers.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/handlers/cleanup_handlers.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/handlers/deploy_handlers.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/handlers/run_handlers.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/handlers/secret_handlers.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/default/.dockerignore.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/default/Dockerfile-uv.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/default/Dockerfile.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/default/README.md.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/default/dev.ipynb.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/default/environments.yaml.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/default/pyproject.toml.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/default/requirements.txt.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/default/test_agent.py.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/sync/.dockerignore.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/sync/Dockerfile-uv.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/sync/Dockerfile.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/sync/README.md.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/sync/dev.ipynb.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/sync/environments.yaml.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/sync/project/acp.py.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/sync/pyproject.toml.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/sync/requirements.txt.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/sync/test_agent.py.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/temporal/.dockerignore.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/temporal/Dockerfile-uv.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/temporal/Dockerfile.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/temporal/README.md.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/temporal/dev.ipynb.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/temporal/environments.yaml.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/temporal/project/acp.py.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/temporal/project/activities.py.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/temporal/project/run_worker.py.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/temporal/project/workflow.py.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/temporal/pyproject.toml.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/temporal/requirements.txt.j2 +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/templates/temporal/test_agent.py.j2 +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/core → agentex_sdk-0.6.7/src/agentex/lib/cli/utils}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/utils/auth_utils.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/utils/cli_utils.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/utils/credential_utils.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/utils/exceptions.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/utils/kubectl_utils.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/utils/kubernetes_secrets_utils.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/cli/utils/path_utils.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/core/adapters → agentex_sdk-0.6.7/src/agentex/lib/core}/__init__.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/core/clients/temporal → agentex_sdk-0.6.7/src/agentex/lib/core/adapters}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/adapters/llm/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/adapters/llm/adapter_litellm.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/adapters/llm/adapter_sgp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/adapters/llm/port.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/adapters/streams/adapter_redis.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/adapters/streams/port.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/clients/__init__.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/core/services → agentex_sdk-0.6.7/src/agentex/lib/core/clients/temporal}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/clients/temporal/temporal_client.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/clients/temporal/types.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/clients/temporal/utils.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/core/services/adk → agentex_sdk-0.6.7/src/agentex/lib/core/services}/__init__.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/core/services/adk/acp → agentex_sdk-0.6.7/src/agentex/lib/core/services/adk}/__init__.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/core/services/adk/providers → agentex_sdk-0.6.7/src/agentex/lib/core/services/adk/acp}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/services/adk/acp/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/services/adk/agent_task_tracker.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/services/adk/agents.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/services/adk/events.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/services/adk/messages.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/core/services/adk/utils → agentex_sdk-0.6.7/src/agentex/lib/core/services/adk/providers}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/services/adk/providers/litellm.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/services/adk/providers/openai.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/services/adk/providers/sgp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/services/adk/state.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/services/adk/streaming.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/services/adk/tasks.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/services/adk/tracing.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/core/temporal → agentex_sdk-0.6.7/src/agentex/lib/core/services/adk/utils}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/services/adk/utils/templating.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/core/temporal/activities/adk → agentex_sdk-0.6.7/src/agentex/lib/core/temporal}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/activities/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/activities/activity_helpers.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/core/temporal/activities/adk/acp → agentex_sdk-0.6.7/src/agentex/lib/core/temporal/activities/adk}/__init__.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/core/temporal/activities/adk/providers → agentex_sdk-0.6.7/src/agentex/lib/core/temporal/activities/adk/acp}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/activities/adk/acp/acp_activities.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/activities/adk/agent_task_tracker_activities.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/activities/adk/agents_activities.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/activities/adk/events_activities.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/activities/adk/messages_activities.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/core/temporal/activities/adk/utils → agentex_sdk-0.6.7/src/agentex/lib/core/temporal/activities/adk/providers}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/activities/adk/providers/litellm_activities.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/activities/adk/providers/openai_activities.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/activities/adk/providers/sgp_activities.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/activities/adk/state_activities.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/activities/adk/streaming_activities.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/activities/adk/tasks_activities.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/activities/adk/tracing_activities.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/core/temporal/services → agentex_sdk-0.6.7/src/agentex/lib/core/temporal/activities/adk/utils}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/activities/adk/utils/templating_activities.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/plugins/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/plugins/openai_agents/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/plugins/openai_agents/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/plugins/openai_agents/hooks/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/plugins/openai_agents/hooks/activities.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/plugins/openai_agents/hooks/hooks.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/plugins/openai_agents/interceptors/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/plugins/openai_agents/interceptors/context_interceptor.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/plugins/openai_agents/models/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/plugins/openai_agents/models/temporal_tracing_model.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/plugins/openai_agents/tests/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/plugins/openai_agents/tests/conftest.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/plugins/openai_agents/tests/test_streaming_model.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/core/temporal/types → agentex_sdk-0.6.7/src/agentex/lib/core/temporal/services}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/services/temporal_task_service.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/core/temporal/workers → agentex_sdk-0.6.7/src/agentex/lib/core/temporal/types}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/types/workflow.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/sdk → agentex_sdk-0.6.7/src/agentex/lib/core/temporal/workers}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/workers/worker.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/temporal/workflows/workflow.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/tracing/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/tracing/processors/agentex_tracing_processor.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/tracing/processors/sgp_tracing_processor.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/tracing/processors/tracing_processor_interface.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/tracing/trace.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/tracing/tracer.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/core/tracing/tracing_processor_manager.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/environment_variables.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/py.typed +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/sdk/config → agentex_sdk-0.6.7/src/agentex/lib/sdk}/__init__.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/sdk/utils → agentex_sdk-0.6.7/src/agentex/lib/sdk/config}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/config/agent_config.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/config/agent_manifest.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/config/build_config.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/config/deployment_config.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/config/environment_config.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/config/local_development_config.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/config/project_config.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/config/validation.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/fastacp/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/fastacp/base/base_acp_server.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/fastacp/base/constants.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/fastacp/fastacp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/fastacp/impl/async_base_acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/fastacp/impl/sync_acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/fastacp/impl/temporal_acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/fastacp/tests/README.md +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/fastacp/tests/conftest.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/fastacp/tests/pytest.ini +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/fastacp/tests/run_tests.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/fastacp/tests/test_base_acp_server.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/fastacp/tests/test_fastacp_factory.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/fastacp/tests/test_integration.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/state_machine/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/state_machine/noop_workflow.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/state_machine/state.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/state_machine/state_machine.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/state_machine/state_workflow.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/types → agentex_sdk-0.6.7/src/agentex/lib/sdk/utils}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/sdk/utils/messages.py +0 -0
- {agentex_sdk-0.6.5/src/agentex/lib/utils → agentex_sdk-0.6.7/src/agentex/lib/types}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/types/acp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/types/agent_configs.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/types/agent_results.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/types/converters.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/types/credentials.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/types/fastacp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/types/files.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/types/json_rpc.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/types/llm_messages.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/types/tracing.py +0 -0
- {agentex_sdk-0.6.5/tests/lib → agentex_sdk-0.6.7/src/agentex/lib/utils}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/utils/completions.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/utils/console.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/utils/debug.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/utils/dev_tools/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/utils/dev_tools/async_messages.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/utils/io.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/utils/iterables.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/utils/json_schema.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/utils/logging.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/utils/mcp.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/utils/model_utils.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/utils/parsing.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/utils/regex.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/utils/registration.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/lib/utils/temporal.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/py.typed +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/resources/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/resources/agents.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/resources/deployment_history.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/resources/events.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/resources/messages/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/resources/messages/batch.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/resources/messages/messages.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/resources/spans.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/resources/states.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/resources/tasks.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/resources/tracker.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/acp_type.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/agent.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/agent_list_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/agent_list_response.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/agent_rpc_by_name_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/agent_rpc_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/agent_rpc_response.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/agent_rpc_result.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/agent_task_tracker.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/data_content.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/data_content_param.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/data_delta.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/deployment_history.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/deployment_history_list_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/deployment_history_list_response.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/event.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/event_list_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/event_list_response.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/message_author.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/message_create_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/message_list_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/message_list_response.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/message_style.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/message_update_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/messages/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/messages/batch_create_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/messages/batch_create_response.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/messages/batch_update_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/messages/batch_update_response.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/reasoning_content.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/reasoning_content_delta.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/reasoning_content_param.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/reasoning_summary_delta.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/shared/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/shared/delete_response.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/span.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/span_create_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/span_list_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/span_list_response.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/span_update_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/state.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/state_create_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/state_list_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/state_list_response.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/state_update_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/task.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/task_list_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/task_list_response.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/task_message.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/task_message_content.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/task_message_content_param.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/task_message_delta.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/task_message_update.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/task_retrieve_by_name_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/task_retrieve_by_name_response.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/task_retrieve_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/task_retrieve_response.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/text_content.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/text_content_param.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/text_delta.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/text_format.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/tool_request_content.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/tool_request_content_param.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/tool_request_delta.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/tool_response_content.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/tool_response_content_param.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/tool_response_delta.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/tracker_list_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/tracker_list_response.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/src/agentex/types/tracker_update_params.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/api_resources/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/api_resources/messages/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/api_resources/messages/test_batch.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/api_resources/test_agents.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/api_resources/test_deployment_history.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/api_resources/test_events.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/api_resources/test_messages.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/api_resources/test_spans.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/api_resources/test_states.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/api_resources/test_tasks.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/api_resources/test_tracker.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/conftest.py +0 -0
- {agentex_sdk-0.6.5/tests/lib/adk → agentex_sdk-0.6.7/tests/lib}/__init__.py +0 -0
- {agentex_sdk-0.6.5/tests/lib/adk/providers → agentex_sdk-0.6.7/tests/lib/adk}/__init__.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/lib/adk/providers/test_openai_activities.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/lib/test_agentex_worker.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/sample_file.txt +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_client.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_deepcopy.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_extract_files.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_files.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_function_tool.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_header_forwarding.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_model_utils.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_qs.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_required_args.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_response.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_streaming.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_task_cancel.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_transform.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_utils/test_datetime_parse.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_utils/test_proxy.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/test_utils/test_typing.py +0 -0
- {agentex_sdk-0.6.5 → agentex_sdk-0.6.7}/tests/utils.py +0 -0
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.6.7 (2025-11-19)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.6.6...v0.6.7](https://github.com/scaleapi/scale-agentex-python/compare/v0.6.6...v0.6.7)
|
|
6
|
+
|
|
7
|
+
## 0.6.6 (2025-11-12)
|
|
8
|
+
|
|
9
|
+
Full Changelog: [v0.6.5...v0.6.6](https://github.com/scaleapi/scale-agentex-python/compare/v0.6.5...v0.6.6)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* compat with Python 3.14 ([9a62f23](https://github.com/scaleapi/scale-agentex-python/commit/9a62f23376ef797bafe67f61552eb7635286caa3))
|
|
14
|
+
* **compat:** update signatures of `model_dump` and `model_dump_json` for Pydantic v1 ([cf857f9](https://github.com/scaleapi/scale-agentex-python/commit/cf857f9191f10a971e9cba2a8c764229ed4a7dfe))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Chores
|
|
18
|
+
|
|
19
|
+
* **internal:** restore stats ([5ec0383](https://github.com/scaleapi/scale-agentex-python/commit/5ec0383d9d6a85b342263ba49b8e3893924c59fc))
|
|
20
|
+
* **package:** drop Python 3.8 support ([3d4dc37](https://github.com/scaleapi/scale-agentex-python/commit/3d4dc37f87b8d8f1debbe6505746342e461772ba))
|
|
21
|
+
|
|
3
22
|
## 0.6.5 (2025-11-06)
|
|
4
23
|
|
|
5
24
|
Full Changelog: [v0.6.4...v0.6.5](https://github.com/scaleapi/scale-agentex-python/compare/v0.6.4...v0.6.5)
|
|
@@ -131,28 +131,3 @@ the environment.
|
|
|
131
131
|
|
|
132
132
|
This repository is setup with some pre-canned prompts for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) as well as [Cursor](https://cursor.com/).
|
|
133
133
|
|
|
134
|
-
### Cursor
|
|
135
|
-
|
|
136
|
-
Access to Cursor can be acquired by asking for it in #it-help. Then just loading this repo in the Cursor IDE should enable the prompts.
|
|
137
|
-
|
|
138
|
-
### Claude Code
|
|
139
|
-
|
|
140
|
-
### 1. Install Claude Code
|
|
141
|
-
```bash
|
|
142
|
-
npm install -g @anthropic-ai/claude-code
|
|
143
|
-
```
|
|
144
|
-
|
|
145
|
-
### 2. Request a LiteLLM API Key
|
|
146
|
-
Visit the [LiteLLM User Guide](https://scale.atlassian.net/wiki/spaces/EPD/pages/1490354189/LiteLLM+User+Guide#Requesting-LiteLLM-Key-for-Generic-Usage) to request your API key.
|
|
147
|
-
|
|
148
|
-
### 3. Set Environment Variables
|
|
149
|
-
```bash
|
|
150
|
-
export ANTHROPIC_AUTH_TOKEN=${LITELLM_PROXY_API_KEY}
|
|
151
|
-
export ANTHROPIC_BASE_URL="https://litellm.ml-serving-internal.scale.com"
|
|
152
|
-
```
|
|
153
|
-
|
|
154
|
-
### 4. Start Claude Code
|
|
155
|
-
```bash
|
|
156
|
-
claude
|
|
157
|
-
```
|
|
158
|
-
This should be run from inside the main repo directory. If you run the command from a terminal inside VSCode, then Claude will use the VSCode editor to show diffs etc.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: agentex-sdk
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.7
|
|
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
|
|
@@ -55,6 +55,7 @@ Requires-Dist: tzdata>=2025.2
|
|
|
55
55
|
Requires-Dist: tzlocal>=5.3.1
|
|
56
56
|
Requires-Dist: uvicorn>=0.31.1
|
|
57
57
|
Requires-Dist: watchfiles<1.0,>=0.24.0
|
|
58
|
+
Requires-Dist: yaspin>=3.1.0
|
|
58
59
|
Provides-Extra: aiohttp
|
|
59
60
|
Requires-Dist: aiohttp; extra == 'aiohttp'
|
|
60
61
|
Requires-Dist: httpx-aiohttp>=0.1.9; extra == 'aiohttp'
|
|
@@ -68,7 +69,7 @@ Description-Content-Type: text/markdown
|
|
|
68
69
|
<!-- prettier-ignore -->
|
|
69
70
|
[)](https://pypi.org/project/agentex-sdk/)
|
|
70
71
|
|
|
71
|
-
The Agentex Python library provides convenient access to the Agentex REST API from any Python 3.
|
|
72
|
+
The Agentex Python library provides convenient access to the Agentex REST API from any Python 3.9+
|
|
72
73
|
application. The library includes type definitions for all request params and response fields,
|
|
73
74
|
and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
|
|
74
75
|
|
|
@@ -453,7 +454,7 @@ print(agentex.__version__)
|
|
|
453
454
|
|
|
454
455
|
## Requirements
|
|
455
456
|
|
|
456
|
-
Python 3.
|
|
457
|
+
Python 3.9 or higher.
|
|
457
458
|
|
|
458
459
|
## Contributing
|
|
459
460
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<!-- prettier-ignore -->
|
|
5
5
|
[)](https://pypi.org/project/agentex-sdk/)
|
|
6
6
|
|
|
7
|
-
The Agentex Python library provides convenient access to the Agentex REST API from any Python 3.
|
|
7
|
+
The Agentex Python library provides convenient access to the Agentex REST API from any Python 3.9+
|
|
8
8
|
application. The library includes type definitions for all request params and response fields,
|
|
9
9
|
and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
|
|
10
10
|
|
|
@@ -389,7 +389,7 @@ print(agentex.__version__)
|
|
|
389
389
|
|
|
390
390
|
## Requirements
|
|
391
391
|
|
|
392
|
-
Python 3.
|
|
392
|
+
Python 3.9 or higher.
|
|
393
393
|
|
|
394
394
|
## Contributing
|
|
395
395
|
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
*.so
|
|
6
|
+
.Python
|
|
7
|
+
build/
|
|
8
|
+
develop-eggs/
|
|
9
|
+
dist/
|
|
10
|
+
downloads/
|
|
11
|
+
eggs/
|
|
12
|
+
.eggs/
|
|
13
|
+
lib/
|
|
14
|
+
lib64/
|
|
15
|
+
parts/
|
|
16
|
+
sdist/
|
|
17
|
+
var/
|
|
18
|
+
wheels/
|
|
19
|
+
*.egg-info/
|
|
20
|
+
.installed.cfg
|
|
21
|
+
*.egg
|
|
22
|
+
|
|
23
|
+
# Virtual environments
|
|
24
|
+
venv/
|
|
25
|
+
env/
|
|
26
|
+
ENV/
|
|
27
|
+
.venv
|
|
28
|
+
|
|
29
|
+
# IDE
|
|
30
|
+
.vscode/
|
|
31
|
+
.idea/
|
|
32
|
+
*.swp
|
|
33
|
+
*.swo
|
|
34
|
+
*~
|
|
35
|
+
|
|
36
|
+
# Database files
|
|
37
|
+
*.db
|
|
38
|
+
*.sqlite
|
|
39
|
+
*.sqlite3
|
|
40
|
+
|
|
41
|
+
# Environment variables
|
|
42
|
+
.env
|
|
43
|
+
.env.local
|
|
44
|
+
|
|
45
|
+
# Logs
|
|
46
|
+
*.log
|
|
47
|
+
|
|
48
|
+
# OS
|
|
49
|
+
.DS_Store
|
|
50
|
+
Thumbs.db
|
|
51
|
+
|
|
52
|
+
# Jupyter
|
|
53
|
+
.ipynb_checkpoints/
|
|
54
|
+
*.ipynb_checkpoints
|
|
55
|
+
|
|
56
|
+
# Testing
|
|
57
|
+
.pytest_cache/
|
|
58
|
+
.coverage
|
|
59
|
+
htmlcov/
|
|
60
|
+
|
|
61
|
+
# UV
|
|
62
|
+
.venv/
|
|
63
|
+
uv.lock
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# syntax=docker/dockerfile:1.3
|
|
2
|
+
FROM python:3.12-slim
|
|
3
|
+
COPY --from=ghcr.io/astral-sh/uv:0.6.4 /uv /uvx /bin/
|
|
4
|
+
|
|
5
|
+
# Install system dependencies
|
|
6
|
+
RUN apt-get update && apt-get install -y \
|
|
7
|
+
htop \
|
|
8
|
+
vim \
|
|
9
|
+
curl \
|
|
10
|
+
tar \
|
|
11
|
+
python3-dev \
|
|
12
|
+
postgresql-client \
|
|
13
|
+
build-essential \
|
|
14
|
+
libpq-dev \
|
|
15
|
+
gcc \
|
|
16
|
+
cmake \
|
|
17
|
+
netcat-openbsd \
|
|
18
|
+
nodejs \
|
|
19
|
+
npm \
|
|
20
|
+
&& apt-get clean \
|
|
21
|
+
&& rm -rf /var/lib/apt/lists/**
|
|
22
|
+
|
|
23
|
+
# Install tctl (Temporal CLI)
|
|
24
|
+
RUN curl -L https://github.com/temporalio/tctl/releases/download/v1.18.1/tctl_1.18.1_linux_arm64.tar.gz -o /tmp/tctl.tar.gz && \
|
|
25
|
+
tar -xzf /tmp/tctl.tar.gz -C /usr/local/bin && \
|
|
26
|
+
chmod +x /usr/local/bin/tctl && \
|
|
27
|
+
rm /tmp/tctl.tar.gz
|
|
28
|
+
|
|
29
|
+
RUN uv pip install --system --upgrade pip setuptools wheel
|
|
30
|
+
|
|
31
|
+
ENV UV_HTTP_TIMEOUT=1000
|
|
32
|
+
|
|
33
|
+
# Copy just the pyproject.toml file to optimize caching
|
|
34
|
+
COPY procurement_agent/pyproject.toml /app/procurement_agent/pyproject.toml
|
|
35
|
+
|
|
36
|
+
WORKDIR /app/procurement_agent
|
|
37
|
+
|
|
38
|
+
# Install the required Python packages using uv
|
|
39
|
+
RUN uv pip install --system .
|
|
40
|
+
|
|
41
|
+
# Copy the project code
|
|
42
|
+
COPY procurement_agent/project /app/procurement_agent/project
|
|
43
|
+
|
|
44
|
+
# Run the ACP server using uvicorn
|
|
45
|
+
CMD ["uvicorn", "project.acp:acp", "--host", "0.0.0.0", "--port", "8000"]
|
|
46
|
+
|
|
47
|
+
# When we deploy the worker, we will replace the CMD with the following
|
|
48
|
+
# CMD ["python", "-m", "run_worker"]
|
|
@@ -0,0 +1,412 @@
|
|
|
1
|
+
# Procurement Agent Demo
|
|
2
|
+
|
|
3
|
+
A demonstration of long-running, autonomous AI agents using **Temporal** and **AgentEx**. This agent manages construction procurement workflows that can run for months, respond to external events, and escalate to humans when needed.
|
|
4
|
+
|
|
5
|
+
## What This Demo Shows
|
|
6
|
+
|
|
7
|
+
This demo illustrates a **procurement manager for building construction** that:
|
|
8
|
+
|
|
9
|
+
- **Runs for months or years** - Temporal workflows enable truly persistent agents
|
|
10
|
+
- **Responds to external events** - Not just human input, but signals from the real world (shipments, inspections, etc.)
|
|
11
|
+
- **Escalates to humans when needed** - Waits indefinitely for human decisions on critical issues
|
|
12
|
+
- **Learns from experience** - Remembers past human decisions and applies them to similar situations
|
|
13
|
+
- **Manages complex state** - Uses a database to track construction schedules and procurement items
|
|
14
|
+
|
|
15
|
+
### Key Concepts
|
|
16
|
+
|
|
17
|
+
**Long-Running Workflows**: Thanks to Temporal, the agent can live for months, surviving restarts and failures while maintaining full context.
|
|
18
|
+
|
|
19
|
+
**External Event Integration**: The agent receives real-world signals (not just user messages) via Temporal signals and takes autonomous actions.
|
|
20
|
+
|
|
21
|
+
**Human-in-the-Loop**: The agent can pause execution indefinitely (up to 24 hours) while waiting for human approval on critical decisions.
|
|
22
|
+
|
|
23
|
+
**Learning System**: When a human makes a decision, the agent extracts learnings and applies them to future similar situations.
|
|
24
|
+
|
|
25
|
+
**State Management**: Uses SQLite to persist construction schedules and procurement item status, providing queryable visibility into current operations without parsing conversation history.
|
|
26
|
+
|
|
27
|
+
**Automatic Summarization**: When conversation history exceeds token limits (~40k tokens), the agent automatically summarizes older messages while preserving recent context, enabling indefinite conversation length.
|
|
28
|
+
|
|
29
|
+
## Example Workflow
|
|
30
|
+
|
|
31
|
+
Here's what happens when items move through the procurement pipeline:
|
|
32
|
+
|
|
33
|
+
1. **Submittal Approved** → Agent issues purchase order and creates tracking record
|
|
34
|
+
2. **Shipment Departed Factory** → Agent ingests ETA and checks for schedule conflicts
|
|
35
|
+
3. **Shipment Arrived Site** → Agent notifies team and schedules quality inspection
|
|
36
|
+
4. **Inspection Failed** → Agent escalates to human with recommended action
|
|
37
|
+
5. **Human Decision** → Agent learns from the decision for next time
|
|
38
|
+
|
|
39
|
+
## Running the Demo
|
|
40
|
+
|
|
41
|
+
### Prerequisites
|
|
42
|
+
|
|
43
|
+
You'll need three terminals running:
|
|
44
|
+
|
|
45
|
+
1. **AgentEx Backend** (database, Temporal server, etc.)
|
|
46
|
+
2. **AgentEx UI** (web interface at localhost:3000)
|
|
47
|
+
3. **Procurement Agent** (this demo)
|
|
48
|
+
|
|
49
|
+
### Step 1: Start AgentEx Backend
|
|
50
|
+
|
|
51
|
+
From the `scale-agentex` repository:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
make dev
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
This starts all required services (Postgres, Temporal, Redis, etc.) via Docker Compose. Verify everything is healthy:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
# Optional: Use lazydocker for a better view
|
|
61
|
+
lzd
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
You should see Temporal UI at: http://localhost:8080
|
|
65
|
+
|
|
66
|
+
### Step 2: Start AgentEx Web UI
|
|
67
|
+
|
|
68
|
+
From the `scale-agentex-web` repository:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
make dev
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
The UI will be available at: http://localhost:3000
|
|
75
|
+
|
|
76
|
+
### Step 3: Run the Procurement Agent
|
|
77
|
+
|
|
78
|
+
From this directory (`examples/demos/procurement_agent`):
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
# Install dependencies
|
|
82
|
+
uv sync
|
|
83
|
+
|
|
84
|
+
# Run the agent
|
|
85
|
+
export ENVIRONMENT=development && uv run agentex agents run --manifest manifest.yaml
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
The agent will start and register with the AgentEx backend on port 8000.
|
|
89
|
+
|
|
90
|
+
### Step 4: Create a Task
|
|
91
|
+
|
|
92
|
+
Go to http://localhost:3000 and:
|
|
93
|
+
|
|
94
|
+
1. Create a new task for the `procurement-agent`
|
|
95
|
+
2. Send a message like "Hello" to initialize the workflow
|
|
96
|
+
3. Note the **Workflow ID** from the Temporal UI at http://localhost:8080
|
|
97
|
+
|
|
98
|
+
### Step 5: Send Test Events
|
|
99
|
+
|
|
100
|
+
Now simulate real-world procurement events:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
# Navigate to the scripts directory
|
|
104
|
+
cd project/scripts
|
|
105
|
+
|
|
106
|
+
# Send events (you'll be prompted for the workflow ID)
|
|
107
|
+
uv run send_test_events.py
|
|
108
|
+
|
|
109
|
+
# Or provide the workflow ID directly
|
|
110
|
+
uv run send_test_events.py <workflow-id>
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
The script sends a series of events simulating the procurement lifecycle for multiple items:
|
|
114
|
+
- Steel Beams (passes inspection)
|
|
115
|
+
- HVAC Units (fails inspection - agent escalates)
|
|
116
|
+
- Windows (passes inspection)
|
|
117
|
+
- Flooring Materials (passes inspection)
|
|
118
|
+
- Electrical Panels (fails inspection - agent applies learnings)
|
|
119
|
+
|
|
120
|
+
### Step 6: Observe the Agent
|
|
121
|
+
|
|
122
|
+
Watch the agent in action:
|
|
123
|
+
|
|
124
|
+
1. **AgentEx UI** (http://localhost:3000) - See agent responses and decisions
|
|
125
|
+
2. **Temporal UI** (http://localhost:8080) - View workflow execution, signals, and state
|
|
126
|
+
3. **Terminal** - Watch agent logs for detailed operation info
|
|
127
|
+
|
|
128
|
+
When an inspection fails, the agent will:
|
|
129
|
+
- Analyze the situation
|
|
130
|
+
- Recommend an action
|
|
131
|
+
- Wait for your response in the AgentEx UI
|
|
132
|
+
- Learn from your decision for future similar situations
|
|
133
|
+
|
|
134
|
+
## Project Structure
|
|
135
|
+
|
|
136
|
+
```
|
|
137
|
+
procurement_agent/
|
|
138
|
+
├── project/
|
|
139
|
+
│ ├── acp.py # ACP server & event handlers
|
|
140
|
+
│ ├── workflow.py # Main Temporal workflow logic
|
|
141
|
+
│ ├── run_worker.py # Temporal worker setup
|
|
142
|
+
│ ├── agents/
|
|
143
|
+
│ │ ├── procurement_agent.py # Main AI agent with procurement tools
|
|
144
|
+
│ │ ├── extract_learnings_agent.py # Extracts learnings from human decisions
|
|
145
|
+
│ │ └── summarization_agent.py # Summarizes conversation history
|
|
146
|
+
│ ├── activities/
|
|
147
|
+
│ │ └── activities.py # Temporal activities (POs, inspections, schedules)
|
|
148
|
+
│ ├── data/
|
|
149
|
+
│ │ ├── database.py # SQLite operations
|
|
150
|
+
│ │ └── procurement.db # Persistent storage (auto-created)
|
|
151
|
+
│ ├── models/
|
|
152
|
+
│ │ └── events.py # Event type definitions (Pydantic models)
|
|
153
|
+
│ ├── scripts/
|
|
154
|
+
│ │ └── send_test_events.py # Event simulation script
|
|
155
|
+
│ └── utils/
|
|
156
|
+
│ ├── learning_extraction.py # Utilities for extracting context from conversations
|
|
157
|
+
│ └── summarization.py # Token counting and summarization logic
|
|
158
|
+
├── manifest.yaml # Agent configuration
|
|
159
|
+
├── Dockerfile # Container definition
|
|
160
|
+
└── pyproject.toml # Dependencies (uv)
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
## How It Works
|
|
164
|
+
|
|
165
|
+
### 1. Event-Driven Architecture
|
|
166
|
+
|
|
167
|
+
The agent receives events via Temporal signals in `workflow.py`:
|
|
168
|
+
|
|
169
|
+
```python
|
|
170
|
+
@workflow.signal
|
|
171
|
+
async def send_event(self, event: str) -> None:
|
|
172
|
+
# Validate and queue the event
|
|
173
|
+
await self.event_queue.put(event)
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
Events are validated against Pydantic models and processed by the AI agent.
|
|
177
|
+
|
|
178
|
+
### 2. Human-in-the-Loop Pattern
|
|
179
|
+
|
|
180
|
+
Critical decisions require human approval via the `wait_for_human` tool in `procurement_agent.py`:
|
|
181
|
+
|
|
182
|
+
```python
|
|
183
|
+
@function_tool
|
|
184
|
+
async def wait_for_human(recommended_action: str) -> str:
|
|
185
|
+
"""
|
|
186
|
+
Pause execution until human provides input.
|
|
187
|
+
Waits up to 24 hours for response.
|
|
188
|
+
"""
|
|
189
|
+
await workflow.wait_condition(
|
|
190
|
+
lambda: not workflow_instance.human_queue.empty(),
|
|
191
|
+
timeout=timedelta(hours=24),
|
|
192
|
+
)
|
|
193
|
+
# ... return human response
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
The workflow continues only after receiving human input through the AgentEx UI.
|
|
197
|
+
|
|
198
|
+
### 3. State Management
|
|
199
|
+
|
|
200
|
+
Instead of cramming everything into the LLM context window, the agent uses SQLite to manage:
|
|
201
|
+
|
|
202
|
+
- **Master construction schedule** (delivery dates, buffer days, requirements)
|
|
203
|
+
- **Procurement items** (status, ETAs, purchase orders, inspection results)
|
|
204
|
+
|
|
205
|
+
The database is accessed through Temporal activities with proper error handling and retry policies.
|
|
206
|
+
|
|
207
|
+
### 4. Learning System
|
|
208
|
+
|
|
209
|
+
When humans make decisions, the agent extracts learnings in `extract_learnings_agent.py`:
|
|
210
|
+
|
|
211
|
+
```python
|
|
212
|
+
# After human input, extract the learning
|
|
213
|
+
extraction_result = await Runner.run(extract_agent, new_context, hooks=hooks)
|
|
214
|
+
learning = extraction_result.final_output
|
|
215
|
+
|
|
216
|
+
# Store in workflow state for future reference
|
|
217
|
+
self.human_input_learnings.append(learning)
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
These learnings are passed into the agent's system prompt on subsequent runs.
|
|
221
|
+
|
|
222
|
+
### 5. Automatic Summarization
|
|
223
|
+
|
|
224
|
+
For long-running workflows, conversation history can grow unbounded. The agent automatically manages context using intelligent summarization:
|
|
225
|
+
|
|
226
|
+
```python
|
|
227
|
+
# After each turn, check if summarization is needed
|
|
228
|
+
if should_summarize(self._state.input_list):
|
|
229
|
+
# Find messages to summarize (preserves last 10 turns, starts after previous summary)
|
|
230
|
+
messages_to_summarize, start_index, end_index = get_messages_to_summarize(
|
|
231
|
+
self._state.input_list,
|
|
232
|
+
last_summary_index
|
|
233
|
+
)
|
|
234
|
+
|
|
235
|
+
# Generate summary with dedicated agent
|
|
236
|
+
summary_agent = new_summarization_agent()
|
|
237
|
+
summary_result = await Runner.run(summary_agent, messages_to_summarize, hooks=hooks)
|
|
238
|
+
|
|
239
|
+
# Replace summarized portion with compact summary
|
|
240
|
+
self._state.input_list = apply_summary_to_input_list(...)
|
|
241
|
+
```
|
|
242
|
+
|
|
243
|
+
Key features:
|
|
244
|
+
- **Token threshold**: Triggers at ~40k tokens to stay within model limits
|
|
245
|
+
- **Preserves recent context**: Always keeps last 10 user turns in full detail
|
|
246
|
+
- **Never re-summarizes**: Starts after the most recent summary to avoid information loss
|
|
247
|
+
- **Dedicated summarization agent**: GPT-4o agent focused on extracting key procurement events, decisions, and current state
|
|
248
|
+
|
|
249
|
+
This enables workflows to run indefinitely without hitting context limits.
|
|
250
|
+
|
|
251
|
+
### 6. Error Handling & Retries
|
|
252
|
+
|
|
253
|
+
The workflow uses Temporal's retry policies for resilient execution:
|
|
254
|
+
|
|
255
|
+
```python
|
|
256
|
+
retry_policy = RetryPolicy(
|
|
257
|
+
initial_interval=timedelta(seconds=1),
|
|
258
|
+
backoff_coefficient=2.0, # Exponential backoff
|
|
259
|
+
maximum_interval=timedelta(seconds=120),
|
|
260
|
+
maximum_attempts=5,
|
|
261
|
+
non_retryable_error_types=[
|
|
262
|
+
"DataCorruptionError",
|
|
263
|
+
"ScheduleNotFoundError",
|
|
264
|
+
]
|
|
265
|
+
)
|
|
266
|
+
```
|
|
267
|
+
|
|
268
|
+
Activities automatically retry on transient failures but fail fast on data corruption.
|
|
269
|
+
|
|
270
|
+
## Key Features
|
|
271
|
+
|
|
272
|
+
### Durability
|
|
273
|
+
- Workflows survive process restarts, crashes, and deployments
|
|
274
|
+
- All state is persisted in Temporal and SQLite
|
|
275
|
+
- No context is lost even after months of runtime
|
|
276
|
+
|
|
277
|
+
### External Event Processing
|
|
278
|
+
- Responds to events from external systems (ERP, logistics, QA)
|
|
279
|
+
- Validates and processes events asynchronously
|
|
280
|
+
- Multiple event types supported (approvals, shipments, inspections)
|
|
281
|
+
|
|
282
|
+
### Human Escalation
|
|
283
|
+
- Automatically escalates critical issues (schedule delays, inspection failures)
|
|
284
|
+
- Provides recommended actions to humans
|
|
285
|
+
- Waits indefinitely (up to 24 hours) for human response
|
|
286
|
+
- Continues workflow after receiving guidance
|
|
287
|
+
|
|
288
|
+
### Learning & Adaptation
|
|
289
|
+
- Extracts patterns from human decisions
|
|
290
|
+
- Applies learned rules to similar future situations
|
|
291
|
+
- Becomes more autonomous over time
|
|
292
|
+
- Human maintains oversight and final authority
|
|
293
|
+
|
|
294
|
+
### Observability
|
|
295
|
+
- Full workflow history in Temporal UI
|
|
296
|
+
- Real-time agent responses in AgentEx UI
|
|
297
|
+
- Detailed logging for debugging
|
|
298
|
+
- Database audit trail for all changes
|
|
299
|
+
|
|
300
|
+
## Customizing the Demo
|
|
301
|
+
|
|
302
|
+
### Modify the Construction Schedule
|
|
303
|
+
|
|
304
|
+
Edit the default schedule in `project/data/database.py`:
|
|
305
|
+
|
|
306
|
+
```python
|
|
307
|
+
DEFAULT_SCHEDULE = {
|
|
308
|
+
"project": {
|
|
309
|
+
"name": "Small Office Renovation",
|
|
310
|
+
"start_date": "2026-02-01",
|
|
311
|
+
"end_date": "2026-05-31"
|
|
312
|
+
},
|
|
313
|
+
"deliveries": [
|
|
314
|
+
{
|
|
315
|
+
"item": "Steel Beams",
|
|
316
|
+
"required_by": "2026-02-15",
|
|
317
|
+
"buffer_days": 5
|
|
318
|
+
},
|
|
319
|
+
# ... add more items
|
|
320
|
+
]
|
|
321
|
+
}
|
|
322
|
+
```
|
|
323
|
+
|
|
324
|
+
### Add New Event Types
|
|
325
|
+
|
|
326
|
+
1. Define the event in `project/models/events.py`
|
|
327
|
+
2. Update event validation in `workflow.py`
|
|
328
|
+
3. Teach the agent how to handle it in `procurement_agent.py`
|
|
329
|
+
4. Add test events in `project/scripts/send_test_events.py`
|
|
330
|
+
|
|
331
|
+
### Change Agent Behavior
|
|
332
|
+
|
|
333
|
+
Modify the agent's instructions in `project/agents/procurement_agent.py`:
|
|
334
|
+
|
|
335
|
+
```python
|
|
336
|
+
def new_procurement_agent(master_construction_schedule: str, human_input_learnings: list) -> Agent:
|
|
337
|
+
instructions = f"""
|
|
338
|
+
You are a procurement agent for a commercial building construction project.
|
|
339
|
+
|
|
340
|
+
[Your custom instructions here...]
|
|
341
|
+
"""
|
|
342
|
+
# ...
|
|
343
|
+
```
|
|
344
|
+
|
|
345
|
+
### Add New Tools
|
|
346
|
+
|
|
347
|
+
Create new activities in `project/activities/activities.py` and register them as tools:
|
|
348
|
+
|
|
349
|
+
```python
|
|
350
|
+
@activity.defn(name="my_custom_activity")
|
|
351
|
+
async def my_custom_activity(param: str) -> str:
|
|
352
|
+
# ... your logic
|
|
353
|
+
return result
|
|
354
|
+
|
|
355
|
+
# Register in the agent
|
|
356
|
+
tools=[
|
|
357
|
+
openai_agents.workflow.activity_as_tool(
|
|
358
|
+
my_custom_activity,
|
|
359
|
+
start_to_close_timeout=timedelta(minutes=10)
|
|
360
|
+
),
|
|
361
|
+
# ... other tools
|
|
362
|
+
]
|
|
363
|
+
```
|
|
364
|
+
|
|
365
|
+
## Troubleshooting
|
|
366
|
+
|
|
367
|
+
**Agent not appearing in UI**
|
|
368
|
+
- Verify agent is running on port 8000: `lsof -i :8000`
|
|
369
|
+
- Check `ENVIRONMENT=development` is set
|
|
370
|
+
- Review agent logs for errors
|
|
371
|
+
|
|
372
|
+
**Events not being received**
|
|
373
|
+
- Confirm workflow ID is correct (check Temporal UI)
|
|
374
|
+
- Verify Temporal server is running: `docker ps | grep temporal`
|
|
375
|
+
- Check that send_test_events.py is using the right workflow ID
|
|
376
|
+
|
|
377
|
+
**Human escalation timeout**
|
|
378
|
+
- The agent waits 24 hours for human input before timing out
|
|
379
|
+
- Respond in the AgentEx UI task thread
|
|
380
|
+
- Check that your message is being sent to the correct task
|
|
381
|
+
|
|
382
|
+
**Database errors**
|
|
383
|
+
- The database is automatically created at `project/data/procurement.db`
|
|
384
|
+
- Delete the file to reset: `rm project/data/procurement.db`
|
|
385
|
+
- The agent will recreate it on next run
|
|
386
|
+
|
|
387
|
+
**Import errors**
|
|
388
|
+
- Make sure dependencies are installed: `uv sync`
|
|
389
|
+
- Verify you're running from the correct directory
|
|
390
|
+
- Check Python version is 3.12+
|
|
391
|
+
|
|
392
|
+
## What's Next?
|
|
393
|
+
|
|
394
|
+
This demo shows the foundation for autonomous, long-running agents. Potential applications include:
|
|
395
|
+
|
|
396
|
+
- **Supply chain management** - Track orders, shipments, and inventory across months
|
|
397
|
+
- **Compliance workflows** - Monitor regulatory requirements and schedule audits
|
|
398
|
+
- **Customer success** - Proactive outreach based on usage patterns and lifecycle stage
|
|
399
|
+
- **Infrastructure management** - React to alerts, coordinate maintenance, escalate outages
|
|
400
|
+
- **Financial processes** - Invoice approval workflows, budget tracking, expense management
|
|
401
|
+
|
|
402
|
+
The key insight: **AI agents don't just answer questions—they can run real-world processes autonomously over time.**
|
|
403
|
+
|
|
404
|
+
## Learn More
|
|
405
|
+
|
|
406
|
+
- [AgentEx Documentation](https://agentex.sgp.scale.com/docs/)
|
|
407
|
+
- [Temporal Documentation](https://docs.temporal.io/)
|
|
408
|
+
- [OpenAI Agents SDK](https://github.com/openai/agents-sdk)
|
|
409
|
+
|
|
410
|
+
---
|
|
411
|
+
|
|
412
|
+
**Questions or issues?** Open an issue on the [scale-agentex GitHub repository](https://github.com/scaleapi/scale-agentex).
|