synth-agent-sdk 2.2.0__tar.gz → 2.2.1__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.
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/.gitignore +7 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/PKG-INFO +2 -2
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/README.md +1 -1
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/pyproject.toml +9 -1
- synth_agent_sdk-2.2.0/synth/cli/_ui_assets/conversation_agents.json +0 -324
- synth_agent_sdk-2.2.0/synth/cli/_ui_assets/conversations.json +0 -62
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/.dockerignore +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/.github/CODEOWNERS +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/.github/workflows/observability-doc-idempotence.yml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/.github/workflows/pricing-feed-validation.yml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/.github/workflows/pricing-freshness.yml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/.github/workflows/spec-metadata-lint.yml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/install.ps1 +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/install.sh +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/requirements.txt +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/CHANGELOG.md +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/README.md +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/__main__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/_compat.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/agent.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/audit/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/audit/backends/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/audit/backends/cloudwatch.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/audit/backends/dynamo.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/audit/backends/local.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/audit/backends/s3.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/audit/chain.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/audit/log.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/audit/types.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cache/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cache/base.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cache/dynamo.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cache/local.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cache/middleware.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cache/redis.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cache/types.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/checkpointing/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/checkpointing/base.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/checkpointing/dynamo.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/checkpointing/encryption.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/checkpointing/local.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/checkpointing/redis.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_agent_ops.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_colors.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_doc_gen/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_doc_gen/observability_html.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_error_formatter.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_init_back_nav.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_init_catalog.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_init_enterprise.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_init_generators.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_init_helpers.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_platform_assets/app.js +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_platform_assets/easter_eggs.js +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_platform_assets/index.html +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_platform_assets/style.css +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_render.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_tui.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_ui_assets/README.md +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_ui_assets/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_ui_assets/agentcore_history.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_ui_assets/app.js +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_ui_assets/easter_eggs.js +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_ui_assets/index.html +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_ui_assets/provenance.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_ui_assets/registry_ui.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_ui_assets/server.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_ui_assets/static/app.js +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_ui_assets/static/easter_eggs.js +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_ui_assets/static/index.html +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_ui_assets/static/login.html +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_ui_assets/static/style.css +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_ui_assets/style.css +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/_ui_templates.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/agents_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/aws_auth.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/banner.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/bench_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/cloud_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/create_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/deploy_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/destroy_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/dev.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/dev_ui_contract.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/discover.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/doctor.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/edit_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/eval_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/help_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/init_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/inspect_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/main.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/mcp_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/migrate_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/package_info.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/platform_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/pricing.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/registry.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/registry_prompt.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/route_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/run_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/shell.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/tools_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/trace_cmd.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cli/welcome.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cloud/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cloud/auth.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cloud/cache.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cloud/client.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cloud/config.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cloud/errors.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cloud/manifest.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cloud/packaging.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/cloud/types.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/config.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/adapter.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/auth.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/browser.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/code_interpreter.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/credentials.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/evaluations.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/gateway.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/handler.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/manifest.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/memory.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/model_catalog.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/observability.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/schema_translator.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/ssm.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/team_handler.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/tool_registry.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/agentcore/types.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/packager.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/pipeline/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/pipeline/base.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/pipeline/cost_estimator.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/pipeline/dry_run.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/pipeline/phase_container_build.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/pipeline/phase_endpoint_wiring.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/pipeline/phase_post_deploy.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/pipeline/phase_preflight.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/pipeline/phase_registry_publish.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/pipeline/phase_runtime_provisioning.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/pipeline/phase_state_infra.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/pipeline/progress.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/deploy/pipeline/runner.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/durable/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/durable/base.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/durable/dynamo.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/durable/local.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/durable/redis.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/durable/runner.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/durable/types.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/durable/wrappers.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/errors.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/eval/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/eval/eval.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/eval/report.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/eval/scorers.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/eval/suites/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/eval/suites/base.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/eval/suites/grounding.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/eval/suites/guard_compliance.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/eval/suites/hallucination.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/eval/suites/multi_step.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/eval/suites/tool_selection.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/eval/trace_to_eval.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/events/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/events/base.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/events/budget.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/events/deploy.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/events/executor.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/events/routing.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/events/runtime.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/events/scrub.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/events/state.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/guards/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/guards/base.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/guards/composed.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/guards/cost.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/guards/custom.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/guards/pii.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/guards/rate_limit.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/guards/tool_filter.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/hooks/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/hooks/base.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/hooks/types.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/infra/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/infra/app_template.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/infra/constructs.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/infra/enterprise_constructs.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/infra/enterprise_stack.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/infra/stack.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/knowledge/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/knowledge/base.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/knowledge/bedrock_kb.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/knowledge/expanders.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/knowledge/ingestion.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/knowledge/knowledge.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/knowledge/pipeline.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/knowledge/query_expander.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/knowledge/reranker.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/knowledge/rerankers.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/knowledge/s3.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/knowledge/types.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/knowledge/vector.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/loops/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/loops/ralph.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/memory/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/memory/base.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/memory/bedrock_vector_store.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/memory/conversation.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/memory/dynamo.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/memory/local_vector_store.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/memory/persistent.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/memory/semantic.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/memory/thread.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/memory/vector_store.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/observability/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/observability/cloudwatch.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/observability/cloudwatch_sink.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/observability/metrics.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/observability/trace_endpoint_sink.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/observability/xray_sink.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/_session_ids.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/dispatcher.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/event_bus.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/executors/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/executors/a2a_bus.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/executors/base.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/executors/blackboard.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/executors/consensus.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/executors/critic_review.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/executors/debate.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/executors/direct.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/executors/graph_exec.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/executors/parallel.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/executors/peer_questions.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/executors/pipeline_exec.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/executors/registry.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/executors/single_delegate.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/executors/termination.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/export.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/feature_flags.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/governance/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/governance/budget.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/governance/downgrade.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/governance/policy.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/governance/predicate.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/governance/toml_loader.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/graph.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/human_in_loop.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/interrupt.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/ledgers.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/memory.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/message_bus.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/pipeline.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/plan.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/record_payload.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/record_publisher.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/registry_audit.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/registry_resolver.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/routing/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/routing/base.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/routing/decision.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/routing/heuristic_router.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/routing/hybrid_router.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/routing/llm_router.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/routing/prompts.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/routing/replay.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/routing/request.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/routing/rule_router.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/routing/team_descriptor.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/routing/transparency.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/state/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/state/adapters/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/state/adapters/dynamodb.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/state/adapters/inmem.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/state/adapters/memory.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/state/adapters/s3.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/state/agentcore.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/state/base.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/state/local.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/state/schemas.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/state/termination_adapter.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/team.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/team_registry.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/time_travel.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/orchestration/topology.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/bootstrap.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/catalog.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/cedar.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/deploy_profile.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/drift.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/infra.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/manifest.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/planner.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/preflight.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/publisher.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/rbac.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/registry_provisioner.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/resource_publisher.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/secret_resolver.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/state.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/template_generator.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/validator.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/platform/versioning.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/plugins.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/_loader.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/back_compat.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/budgets/enterprise.toml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/budgets/free_tier.toml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/budgets/production.toml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/budgets/safety_rails.toml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/checkpoints/durable.toml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/checkpoints/hitl.toml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/checkpoints/off.toml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/memory/analysis.toml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/memory/assistant.toml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/memory/balanced.toml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/memory/research.toml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/memory/workflow.toml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/resolve.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/run_history/compliance.toml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/run_history/debug.toml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/run_history/off.toml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/presets/run_history/standard.toml +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/pricing/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/pricing/data/.gitkeep +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/pricing/data/pricing_feed_2026-05-13.json +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/pricing/data/signing_public_key.pem +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/pricing/data/sources/.gitkeep +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/pricing/data/sources/litellm_id_map.json +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/pricing/data/sources/litellm_sha.txt +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/pricing/data/sources/overrides.json +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/pricing/data/sources/required_models.txt +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/pricing/loader.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/pricing/schema.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/pricing/signing.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/pricing/warnings.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/providers/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/providers/_timeout.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/providers/anthropic.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/providers/base.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/providers/bedrock.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/providers/google.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/providers/ollama.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/providers/openai.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/providers/pricing.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/providers/retry.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/providers/router.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/providers/smart_router.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/providers/test.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/secrets/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/secrets/resolver.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/structured/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/structured/output.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tasks/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tasks/runner.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tenancy/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tenancy/context.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tenancy/cost_attribution.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tenancy/credentials.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tenancy/isolation.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tenancy/middleware.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tenancy/quota.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/testing/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/testing/harness.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/testing/mocks.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/testing/vcr.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/a2a.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/agent_registry.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/agent_tool.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/builtins.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/context.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/decorator.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/executor.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/mcp.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/mcp_auth.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/mcp_callback_server.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/mcp_config.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/mcp_registry.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/mcp_token_cache.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/media.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/middleware.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/tool_registry.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/toolkit.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tools/web_search.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tracing/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tracing/attributes.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tracing/exporter.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tracing/exporters/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tracing/exporters/base.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tracing/exporters/datadog.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tracing/exporters/honeycomb.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tracing/exporters/langfuse.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tracing/exporters/otel.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tracing/integrations.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/tracing/trace.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/triggers/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/triggers/handler.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/triggers/runtime.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/triggers/trigger.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/triggers/types.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/types.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/versioning/__init__.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/versioning/canary.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/versioning/manifest.py +0 -0
- {synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/synth/versioning/store.py +0 -0
|
@@ -38,6 +38,13 @@ coverage.xml
|
|
|
38
38
|
.bedrock_agentcore/
|
|
39
39
|
*.log
|
|
40
40
|
|
|
41
|
+
# UI server local state (runtime-generated, never commit)
|
|
42
|
+
synth/cli/_ui_assets/conversations.json
|
|
43
|
+
synth/cli/_ui_assets/conversation_agents.json
|
|
44
|
+
synth/cli/_ui_assets/prompts.json
|
|
45
|
+
synth/cli/_ui_assets/evals.json
|
|
46
|
+
synth/cli/_ui_assets/scenarios.json
|
|
47
|
+
|
|
41
48
|
# CDK build artifacts
|
|
42
49
|
synth-ui-deploy/cdk.out/
|
|
43
50
|
synth-ui-deploy/cdk.out.*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: synth-agent-sdk
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.1
|
|
4
4
|
Summary: Autonomous agents, engineered. A Python SDK for building production-grade AI agents and multi-agent systems.
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -110,7 +110,7 @@ Description-Content-Type: text/markdown
|
|
|
110
110
|
|
|
111
111
|
> Autonomous agents, engineered.
|
|
112
112
|
|
|
113
|
-
**Version:** 2.2.
|
|
113
|
+
**Version:** 2.2.1 | [PyPI](https://pypi.org/project/synth-agent-sdk/) | [Changelog](CHANGELOG.md)
|
|
114
114
|
|
|
115
115
|
Synth is a Python SDK and platform for building, deploying, and governing production-grade AI agents. It covers the full agent lifecycle — from a 3-line prototype to multi-agent systems running across AWS accounts with policy-as-code guardrails, drift detection, and centralized observability.
|
|
116
116
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> Autonomous agents, engineered.
|
|
4
4
|
|
|
5
|
-
**Version:** 2.2.
|
|
5
|
+
**Version:** 2.2.1 | [PyPI](https://pypi.org/project/synth-agent-sdk/) | [Changelog](CHANGELOG.md)
|
|
6
6
|
|
|
7
7
|
Synth is a Python SDK and platform for building, deploying, and governing production-grade AI agents. It covers the full agent lifecycle — from a 3-line prototype to multi-agent systems running across AWS accounts with policy-as-code guardrails, drift detection, and centralized observability.
|
|
8
8
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "synth-agent-sdk"
|
|
7
|
-
version = "2.2.
|
|
7
|
+
version = "2.2.1"
|
|
8
8
|
description = "Autonomous agents, engineered. A Python SDK for building production-grade AI agents and multi-agent systems."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -78,6 +78,14 @@ all = [
|
|
|
78
78
|
|
|
79
79
|
[tool.hatch.build.targets.wheel]
|
|
80
80
|
packages = ["synth"]
|
|
81
|
+
exclude = [
|
|
82
|
+
# Runtime-generated local state files — never ship in the wheel
|
|
83
|
+
"synth/cli/_ui_assets/conversations.json",
|
|
84
|
+
"synth/cli/_ui_assets/conversation_agents.json",
|
|
85
|
+
"synth/cli/_ui_assets/prompts.json",
|
|
86
|
+
"synth/cli/_ui_assets/evals.json",
|
|
87
|
+
"synth/cli/_ui_assets/scenarios.json",
|
|
88
|
+
]
|
|
81
89
|
|
|
82
90
|
# Explicitly declare the bundled pricing data files so the wheel
|
|
83
91
|
# manifest lists them even if they move or are renamed at release cut
|
|
@@ -1,324 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"my-agent - d1103256": {
|
|
3
|
-
"name": "my-agent",
|
|
4
|
-
"agent_id": "abc-123",
|
|
5
|
-
"agent_arn": "",
|
|
6
|
-
"region": "us-east-1",
|
|
7
|
-
"aws_profile": "dev-profile"
|
|
8
|
-
},
|
|
9
|
-
"research_orchestrator - 1255544a": {
|
|
10
|
-
"name": "research_orchestrator",
|
|
11
|
-
"agent_id": "research_orchestrator-tBnxxsDtbG",
|
|
12
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/research_orchestrator-tBnxxsDtbG",
|
|
13
|
-
"region": "us-east-1",
|
|
14
|
-
"aws_profile": ""
|
|
15
|
-
},
|
|
16
|
-
"research_orchestrator - eca4ce0f": {
|
|
17
|
-
"name": "research_orchestrator",
|
|
18
|
-
"agent_id": "research_orchestrator-tBnxxsDtbG",
|
|
19
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/research_orchestrator-tBnxxsDtbG",
|
|
20
|
-
"region": "us-east-1",
|
|
21
|
-
"aws_profile": ""
|
|
22
|
-
},
|
|
23
|
-
"research_orchestrator - 855a7eff": {
|
|
24
|
-
"name": "research_orchestrator",
|
|
25
|
-
"agent_id": "research_orchestrator-tBnxxsDtbG",
|
|
26
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/research_orchestrator-tBnxxsDtbG",
|
|
27
|
-
"region": "us-east-1",
|
|
28
|
-
"aws_profile": ""
|
|
29
|
-
},
|
|
30
|
-
"research_orchestrator - 432339cc": {
|
|
31
|
-
"name": "research_orchestrator",
|
|
32
|
-
"agent_id": "research_orchestrator-tBnxxsDtbG",
|
|
33
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/research_orchestrator-tBnxxsDtbG",
|
|
34
|
-
"region": "us-east-1",
|
|
35
|
-
"aws_profile": ""
|
|
36
|
-
},
|
|
37
|
-
"research_orchestrator - 5b2438f3": {
|
|
38
|
-
"name": "research_orchestrator",
|
|
39
|
-
"agent_id": "research_orchestrator-tBnxxsDtbG",
|
|
40
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/research_orchestrator-tBnxxsDtbG",
|
|
41
|
-
"region": "us-east-1",
|
|
42
|
-
"aws_profile": ""
|
|
43
|
-
},
|
|
44
|
-
"research_orchestrator - 997695a0": {
|
|
45
|
-
"name": "research_orchestrator",
|
|
46
|
-
"agent_id": "research_orchestrator-tBnxxsDtbG",
|
|
47
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/research_orchestrator-tBnxxsDtbG",
|
|
48
|
-
"region": "us-east-1",
|
|
49
|
-
"aws_profile": ""
|
|
50
|
-
},
|
|
51
|
-
"research_orchestrator - 6ebf1d7e": {
|
|
52
|
-
"name": "research_orchestrator",
|
|
53
|
-
"agent_id": "research_orchestrator-tBnxxsDtbG",
|
|
54
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/research_orchestrator-tBnxxsDtbG",
|
|
55
|
-
"region": "us-east-1",
|
|
56
|
-
"aws_profile": ""
|
|
57
|
-
},
|
|
58
|
-
"research_orchestrator - ceaf1af5": {
|
|
59
|
-
"name": "research_orchestrator",
|
|
60
|
-
"agent_id": "research_orchestrator-tBnxxsDtbG",
|
|
61
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/research_orchestrator-tBnxxsDtbG",
|
|
62
|
-
"region": "us-east-1",
|
|
63
|
-
"aws_profile": ""
|
|
64
|
-
},
|
|
65
|
-
"legal_researcher - 0925877f": {
|
|
66
|
-
"name": "legal_researcher",
|
|
67
|
-
"agent_id": "legal_researcher-nVrHAeGWv5",
|
|
68
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/legal_researcher-nVrHAeGWv5",
|
|
69
|
-
"region": "us-east-1",
|
|
70
|
-
"aws_profile": ""
|
|
71
|
-
},
|
|
72
|
-
"Legal_Team_Lead - 4b017013": {
|
|
73
|
-
"name": "Legal_Team_Lead",
|
|
74
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
75
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
76
|
-
"region": "us-east-1",
|
|
77
|
-
"aws_profile": ""
|
|
78
|
-
},
|
|
79
|
-
"Legal_Team_Lead - bc7a83c6": {
|
|
80
|
-
"name": "Legal_Team_Lead",
|
|
81
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
82
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
83
|
-
"region": "us-east-1",
|
|
84
|
-
"aws_profile": ""
|
|
85
|
-
},
|
|
86
|
-
"contract_reviewer - 28d5a7dc": {
|
|
87
|
-
"name": "contract_reviewer",
|
|
88
|
-
"agent_id": "contract_reviewer-pNbBZ26Kwl",
|
|
89
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/contract_reviewer-pNbBZ26Kwl",
|
|
90
|
-
"region": "us-east-1",
|
|
91
|
-
"aws_profile": ""
|
|
92
|
-
},
|
|
93
|
-
"Legal_Team_Lead - 44ce8a24": {
|
|
94
|
-
"name": "Legal_Team_Lead",
|
|
95
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
96
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
97
|
-
"region": "us-east-1",
|
|
98
|
-
"aws_profile": ""
|
|
99
|
-
},
|
|
100
|
-
"Legal_Team_Lead - 0ab7809f": {
|
|
101
|
-
"name": "Legal_Team_Lead",
|
|
102
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
103
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
104
|
-
"region": "us-east-1",
|
|
105
|
-
"aws_profile": ""
|
|
106
|
-
},
|
|
107
|
-
"Legal_Team_Lead - 46de4cdf": {
|
|
108
|
-
"name": "Legal_Team_Lead",
|
|
109
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
110
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
111
|
-
"region": "us-east-1",
|
|
112
|
-
"aws_profile": ""
|
|
113
|
-
},
|
|
114
|
-
"Legal_Team_Lead - 58be5193": {
|
|
115
|
-
"name": "Legal_Team_Lead",
|
|
116
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
117
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
118
|
-
"region": "us-east-1",
|
|
119
|
-
"aws_profile": ""
|
|
120
|
-
},
|
|
121
|
-
"research_orchestrator - 057c139f": {
|
|
122
|
-
"name": "research_orchestrator",
|
|
123
|
-
"agent_id": "research_orchestrator-tBnxxsDtbG",
|
|
124
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/research_orchestrator-tBnxxsDtbG",
|
|
125
|
-
"region": "us-east-1",
|
|
126
|
-
"aws_profile": ""
|
|
127
|
-
},
|
|
128
|
-
"Legal_Team_Lead - 6e2258cd": {
|
|
129
|
-
"name": "Legal_Team_Lead",
|
|
130
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
131
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
132
|
-
"region": "us-east-1",
|
|
133
|
-
"aws_profile": ""
|
|
134
|
-
},
|
|
135
|
-
"Legal_Team_Lead - a600fdbc": {
|
|
136
|
-
"name": "Legal_Team_Lead",
|
|
137
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
138
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
139
|
-
"region": "us-east-1",
|
|
140
|
-
"aws_profile": ""
|
|
141
|
-
},
|
|
142
|
-
"Legal_Team_Lead - 30490fa2": {
|
|
143
|
-
"name": "Legal_Team_Lead",
|
|
144
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
145
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
146
|
-
"region": "us-east-1",
|
|
147
|
-
"aws_profile": ""
|
|
148
|
-
},
|
|
149
|
-
"Legal_Team_Lead - 81921071": {
|
|
150
|
-
"name": "Legal_Team_Lead",
|
|
151
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
152
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
153
|
-
"region": "us-east-1",
|
|
154
|
-
"aws_profile": ""
|
|
155
|
-
},
|
|
156
|
-
"Legal_Team_Lead - 3dce7649": {
|
|
157
|
-
"name": "Legal_Team_Lead",
|
|
158
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
159
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
160
|
-
"region": "us-east-1",
|
|
161
|
-
"aws_profile": ""
|
|
162
|
-
},
|
|
163
|
-
"Legal_Team_Lead - ac5ca49a": {
|
|
164
|
-
"name": "Legal_Team_Lead",
|
|
165
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
166
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
167
|
-
"region": "us-east-1",
|
|
168
|
-
"aws_profile": ""
|
|
169
|
-
},
|
|
170
|
-
"Legal_Team_Lead - 56af30de": {
|
|
171
|
-
"name": "Legal_Team_Lead",
|
|
172
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
173
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
174
|
-
"region": "us-east-1",
|
|
175
|
-
"aws_profile": ""
|
|
176
|
-
},
|
|
177
|
-
"Legal_Team_Lead - 779e8a48": {
|
|
178
|
-
"name": "Legal_Team_Lead",
|
|
179
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
180
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
181
|
-
"region": "us-east-1",
|
|
182
|
-
"aws_profile": ""
|
|
183
|
-
},
|
|
184
|
-
"Legal_Team_Lead - 5f6dff33": {
|
|
185
|
-
"name": "Legal_Team_Lead",
|
|
186
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
187
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
188
|
-
"region": "us-east-1",
|
|
189
|
-
"aws_profile": ""
|
|
190
|
-
},
|
|
191
|
-
"Legal_Team_Lead - ce6e3956": {
|
|
192
|
-
"name": "Legal_Team_Lead",
|
|
193
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
194
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
195
|
-
"region": "us-east-1",
|
|
196
|
-
"aws_profile": ""
|
|
197
|
-
},
|
|
198
|
-
"Legal_Team_Lead - 96bf2e16": {
|
|
199
|
-
"name": "Legal_Team_Lead",
|
|
200
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
201
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
202
|
-
"region": "us-east-1",
|
|
203
|
-
"aws_profile": ""
|
|
204
|
-
},
|
|
205
|
-
"Legal_Team_Lead - 7e61700f": {
|
|
206
|
-
"name": "Legal_Team_Lead",
|
|
207
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
208
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
209
|
-
"region": "us-east-1",
|
|
210
|
-
"aws_profile": ""
|
|
211
|
-
},
|
|
212
|
-
"Legal_Team_Lead - 6e284ce6": {
|
|
213
|
-
"name": "Legal_Team_Lead",
|
|
214
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
215
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
216
|
-
"region": "us-east-1",
|
|
217
|
-
"aws_profile": ""
|
|
218
|
-
},
|
|
219
|
-
"Legal_Team_Lead - 32cec3d7": {
|
|
220
|
-
"name": "Legal_Team_Lead",
|
|
221
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
222
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
223
|
-
"region": "us-east-1",
|
|
224
|
-
"aws_profile": ""
|
|
225
|
-
},
|
|
226
|
-
"Legal_Team_Lead - 22298888": {
|
|
227
|
-
"name": "Legal_Team_Lead",
|
|
228
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
229
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
230
|
-
"region": "us-east-1",
|
|
231
|
-
"aws_profile": ""
|
|
232
|
-
},
|
|
233
|
-
"Legal_Team_Lead - 0543dc49": {
|
|
234
|
-
"name": "Legal_Team_Lead",
|
|
235
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
236
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
237
|
-
"region": "us-east-1",
|
|
238
|
-
"aws_profile": ""
|
|
239
|
-
},
|
|
240
|
-
"Legal_Team_Lead - 9c09aa27": {
|
|
241
|
-
"name": "Legal_Team_Lead",
|
|
242
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
243
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
244
|
-
"region": "us-east-1",
|
|
245
|
-
"aws_profile": ""
|
|
246
|
-
},
|
|
247
|
-
"Legal_Team_Lead - 3fce543d": {
|
|
248
|
-
"name": "Legal_Team_Lead",
|
|
249
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
250
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
251
|
-
"region": "us-east-1",
|
|
252
|
-
"aws_profile": ""
|
|
253
|
-
},
|
|
254
|
-
"Legal_Team_Lead - f10f5463": {
|
|
255
|
-
"name": "Legal_Team_Lead",
|
|
256
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
257
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
258
|
-
"region": "us-east-1",
|
|
259
|
-
"aws_profile": ""
|
|
260
|
-
},
|
|
261
|
-
"Legal_Team_Lead - cdcbda06": {
|
|
262
|
-
"name": "Legal_Team_Lead",
|
|
263
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
264
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
265
|
-
"region": "us-east-1",
|
|
266
|
-
"aws_profile": ""
|
|
267
|
-
},
|
|
268
|
-
"Legal_Team_Lead - 488df80a": {
|
|
269
|
-
"name": "Legal_Team_Lead",
|
|
270
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
271
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
272
|
-
"region": "us-east-1",
|
|
273
|
-
"aws_profile": ""
|
|
274
|
-
},
|
|
275
|
-
"contract_reviewer - 35690a17": {
|
|
276
|
-
"name": "contract_reviewer",
|
|
277
|
-
"agent_id": "contract_reviewer-pNbBZ26Kwl",
|
|
278
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/contract_reviewer-pNbBZ26Kwl",
|
|
279
|
-
"region": "us-east-1",
|
|
280
|
-
"aws_profile": ""
|
|
281
|
-
},
|
|
282
|
-
"Legal_Team_Lead - 190bbbd8": {
|
|
283
|
-
"name": "Legal_Team_Lead",
|
|
284
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
285
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
286
|
-
"region": "us-east-1",
|
|
287
|
-
"aws_profile": ""
|
|
288
|
-
},
|
|
289
|
-
"contract_reviewer - 1737df6d": {
|
|
290
|
-
"name": "contract_reviewer",
|
|
291
|
-
"agent_id": "contract_reviewer-pNbBZ26Kwl",
|
|
292
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/contract_reviewer-pNbBZ26Kwl",
|
|
293
|
-
"region": "us-east-1",
|
|
294
|
-
"aws_profile": ""
|
|
295
|
-
},
|
|
296
|
-
"Legal_Team_Lead - cfff089e": {
|
|
297
|
-
"name": "Legal_Team_Lead",
|
|
298
|
-
"agent_id": "Legal_Team_Lead-1h8EyjEJ3e",
|
|
299
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Legal_Team_Lead-1h8EyjEJ3e",
|
|
300
|
-
"region": "us-east-1",
|
|
301
|
-
"aws_profile": ""
|
|
302
|
-
},
|
|
303
|
-
"research_orchestrator - 3a386089": {
|
|
304
|
-
"name": "research_orchestrator",
|
|
305
|
-
"agent_id": "research_orchestrator-tBnxxsDtbG",
|
|
306
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/research_orchestrator-tBnxxsDtbG",
|
|
307
|
-
"region": "us-east-1",
|
|
308
|
-
"aws_profile": ""
|
|
309
|
-
},
|
|
310
|
-
"Senior_Analyst - 7178f1bf": {
|
|
311
|
-
"name": "Senior_Analyst",
|
|
312
|
-
"agent_id": "Senior_Analyst-kBVW0fC34i",
|
|
313
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/Senior_Analyst-kBVW0fC34i",
|
|
314
|
-
"region": "us-east-1",
|
|
315
|
-
"aws_profile": ""
|
|
316
|
-
},
|
|
317
|
-
"analyst - ddcce71b": {
|
|
318
|
-
"name": "analyst",
|
|
319
|
-
"agent_id": "analyst-aAXKlhD09V",
|
|
320
|
-
"agent_arn": "arn:aws:bedrock-agentcore:us-east-1:461636396940:runtime/analyst-aAXKlhD09V",
|
|
321
|
-
"region": "us-east-1",
|
|
322
|
-
"aws_profile": ""
|
|
323
|
-
}
|
|
324
|
-
}
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"default": [],
|
|
3
|
-
"Legal_Team_Lead - 779e8a48": {
|
|
4
|
-
"legacy": true,
|
|
5
|
-
"messages": []
|
|
6
|
-
},
|
|
7
|
-
"Legal_Team_Lead - 5f6dff33": {
|
|
8
|
-
"legacy": true,
|
|
9
|
-
"messages": []
|
|
10
|
-
},
|
|
11
|
-
"Legal_Team_Lead - ce6e3956": {
|
|
12
|
-
"legacy": true,
|
|
13
|
-
"messages": []
|
|
14
|
-
},
|
|
15
|
-
"Legal_Team_Lead - 96bf2e16": {
|
|
16
|
-
"legacy": true,
|
|
17
|
-
"messages": []
|
|
18
|
-
},
|
|
19
|
-
"Legal_Team_Lead - 7e61700f": {
|
|
20
|
-
"legacy": true,
|
|
21
|
-
"messages": []
|
|
22
|
-
},
|
|
23
|
-
"Legal_Team_Lead - 6e284ce6": {
|
|
24
|
-
"legacy": true,
|
|
25
|
-
"messages": []
|
|
26
|
-
},
|
|
27
|
-
"Legal_Team_Lead - 3fce543d": {
|
|
28
|
-
"legacy": true,
|
|
29
|
-
"messages": []
|
|
30
|
-
},
|
|
31
|
-
"Legal_Team_Lead - f10f5463": {
|
|
32
|
-
"legacy": true,
|
|
33
|
-
"messages": []
|
|
34
|
-
},
|
|
35
|
-
"Legal_Team_Lead - cdcbda06": {
|
|
36
|
-
"legacy": true,
|
|
37
|
-
"messages": []
|
|
38
|
-
},
|
|
39
|
-
"Legal_Team_Lead - 488df80a": {
|
|
40
|
-
"legacy": true,
|
|
41
|
-
"messages": []
|
|
42
|
-
},
|
|
43
|
-
"contract_reviewer - 35690a17": {
|
|
44
|
-
"legacy": true,
|
|
45
|
-
"messages": []
|
|
46
|
-
},
|
|
47
|
-
"Legal_Team_Lead - 190bbbd8": {
|
|
48
|
-
"legacy": true,
|
|
49
|
-
"messages": []
|
|
50
|
-
},
|
|
51
|
-
"contract_reviewer - 1737df6d": {
|
|
52
|
-
"legacy": true,
|
|
53
|
-
"messages": []
|
|
54
|
-
},
|
|
55
|
-
"Legal_Team_Lead - cfff089e": {
|
|
56
|
-
"legacy": true,
|
|
57
|
-
"messages": []
|
|
58
|
-
},
|
|
59
|
-
"research_orchestrator - 3a386089": [],
|
|
60
|
-
"Senior_Analyst - 7178f1bf": [],
|
|
61
|
-
"analyst - ddcce71b": []
|
|
62
|
-
}
|
|
File without changes
|
|
File without changes
|
{synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/.github/workflows/observability-doc-idempotence.yml
RENAMED
|
File without changes
|
{synth_agent_sdk-2.2.0 → synth_agent_sdk-2.2.1}/.github/workflows/pricing-feed-validation.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|