agentops-accelerator 0.3.2__tar.gz → 0.3.4__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.
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.claude-plugin/marketplace.json +1 -1
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.github/plugin/marketplace.json +1 -1
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/CHANGELOG.md +91 -1
- {agentops_accelerator-0.3.2/src/agentops_accelerator.egg-info → agentops_accelerator-0.3.4}/PKG-INFO +15 -15
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/plugins/agentops/package.json +1 -1
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/plugins/agentops/plugin.json +1 -1
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/pyproject.toml +15 -15
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/sources/results_history.py +24 -6
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/cli/app.py +3 -2
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/pipeline/runtime.py +22 -2
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/services/cicd.py +40 -1
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-dev-azd.yml +1 -1
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-dev.yml +1 -1
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-prod-azd.yml +1 -1
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-prod.yml +1 -1
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-prompt-agent.yml +3 -3
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-qa-azd.yml +1 -1
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-qa.yml +1 -1
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/pipelines/azuredevops/agentops-pr-prompt-agent.yml +2 -2
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/pipelines/azuredevops/agentops-pr.yml +1 -2
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/pipelines/azuredevops/agentops-watchdog.yml +1 -1
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/workflows/agentops-deploy-dev-azd.yml +1 -1
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/workflows/agentops-deploy-dev.yml +1 -3
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/workflows/agentops-deploy-prod-azd.yml +1 -1
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/workflows/agentops-deploy-prod.yml +1 -3
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/workflows/agentops-deploy-prompt-agent.yml +3 -3
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/workflows/agentops-deploy-qa-azd.yml +1 -1
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/workflows/agentops-deploy-qa.yml +1 -3
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/workflows/agentops-pr-prompt-agent.yml +2 -2
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/workflows/agentops-pr.yml +1 -3
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/workflows/agentops-watchdog.yml +1 -1
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/utils/azure_endpoints.py +32 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4/src/agentops_accelerator.egg-info}/PKG-INFO +15 -15
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops_accelerator.egg-info/SOURCES.txt +1 -0
- agentops_accelerator-0.3.4/src/agentops_accelerator.egg-info/requires.txt +25 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_results_history.py +141 -0
- agentops_accelerator-0.3.4/tests/unit/test_azure_endpoints.py +117 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_cicd.py +96 -0
- agentops_accelerator-0.3.4/tests/unit/test_runtime_model_config.py +100 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/uv.lock +26 -26
- agentops_accelerator-0.3.2/src/agentops_accelerator.egg-info/requires.txt +0 -25
- agentops_accelerator-0.3.2/tests/unit/test_azure_endpoints.py +0 -54
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.gitattributes +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.github/actions/azure-oidc-login/action.yml +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.github/code-quality-py.instructions.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.github/copilot-instructions.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.github/dependabot.yml +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.github/extensions/agentops-skills/extension.mjs +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.github/skills/release-management/SKILL.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.github/workflows/_build.yml +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.github/workflows/agentops-watchdog.yml +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.github/workflows/ci.yml +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.github/workflows/cut-release.yml +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.github/workflows/e2e.yml +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.github/workflows/release.yml +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.github/workflows/staging.yml +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.gitignore +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.pre-commit-config.yaml +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.vscode/launch.json +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.vscode/settings.json +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/.vscode/tasks.json +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/AGENTS.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/CONTRIBUTING.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/LICENSE +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/README.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/SECURITY.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/docs/bundles.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/docs/ci-github-actions.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/docs/concepts.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/docs/doctor-checks.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/docs/doctor-explained.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/docs/e2e-live-architecture.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/docs/e2e-live-setup.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/docs/foundry-evaluation-sdk-built-in-evaluators.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/docs/how-it-works.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/docs/media/agentops-diagrams.vsdx +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/docs/media/foundry-control-plane.png +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/docs/release-process.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/docs/tutorial-end-to-end.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/docs/tutorial-hosted-agent-quickstart.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/docs/tutorial-prompt-agent-quickstart.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/examples/flat-quickstart/README.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/examples/flat-quickstart/agentops.yaml +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/examples/flat-quickstart/dataset.jsonl +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/icon.png +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/infra/e2e/agent-app/Dockerfile +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/infra/e2e/agent-app/app.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/infra/e2e/agent-app/requirements.txt +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/infra/e2e/bootstrap.bicep +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/infra/e2e/bootstrap.parameters.example.json +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/infra/e2e/perrun.bicep +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/launch.json +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/media/foundry.svg +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/media/quickstart.gif +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/plugins/agentops/.vscodeignore +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/plugins/agentops/LICENSE +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/plugins/agentops/README.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/plugins/agentops/skills/agentops-agent/SKILL.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/plugins/agentops/skills/agentops-config/SKILL.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/plugins/agentops/skills/agentops-dataset/SKILL.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/plugins/agentops/skills/agentops-eval/SKILL.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/plugins/agentops/skills/agentops-report/SKILL.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/plugins/agentops/skills/agentops-workflow/SKILL.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/create_support_agent.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/cut-release.ps1 +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/cut-release.sh +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/e2e_aggregate_summary.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/e2e_data/basic.jsonl +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/e2e_data/rag.jsonl +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/e2e_data/tools.jsonl +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/e2e_demo.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/e2e_hosted_agent.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/e2e_make_transcript.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/e2e_render_config.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/release.ps1 +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/release.sh +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/setup-e2e-new-tenant.ps1 +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/staging.ps1 +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/staging.sh +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/sync-skills.ps1 +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/scripts/sync-skills.sh +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/setup.cfg +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/__init__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/__main__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/__init__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/_legacy_ids.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/analyzer.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/__init__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/catalog.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/errors.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/foundry_config.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/latency.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/opex.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/opex_workspace.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/posture.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/posture_rules/__init__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/posture_rules/content_filter.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/posture_rules/diagnostics.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/posture_rules/local_auth.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/posture_rules/managed_identity.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/posture_rules/network.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/regression.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/release_readiness.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/safety.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/checks/spec_conformance.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/cockpit.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/config.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/findings.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/history.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/knowledge/__init__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/knowledge/waf-checklist.csv +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/llm_assist/__init__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/llm_assist/_base.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/llm_assist/_bundle_rule.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/llm_assist/_client.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/llm_assist/_dataset_rules.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/llm_assist/_engine.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/llm_assist/_prompt_rules.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/llm_assist/_spec_rules.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/production_telemetry.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/report.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/server/__init__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/server/app.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/server/auth.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/server/chat.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/server/protocol.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/sources/__init__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/sources/azure_monitor.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/sources/azure_resources.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/sources/foundry_control.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/sources/spec_detectors/__init__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/sources/spec_detectors/_base.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/sources/spec_detectors/agents_md.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/sources/spec_detectors/spec_kit.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/agent/time_range.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/cli/__init__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/core/__init__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/core/agentops_config.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/core/config_loader.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/core/evaluators.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/core/release_evidence.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/core/results.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/mcp/__init__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/mcp/server.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/pipeline/__init__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/pipeline/cloud_results.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/pipeline/cloud_runner.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/pipeline/comparison.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/pipeline/diagnostics.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/pipeline/invocations.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/pipeline/official_eval.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/pipeline/orchestrator.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/pipeline/prompt_deploy.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/pipeline/publisher.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/pipeline/reporter.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/pipeline/thresholds.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/services/__init__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/services/eval_analysis.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/services/evidence_pack.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/services/initializer.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/services/preflight.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/services/setup_wizard.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/services/skills.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/services/trace_promotion.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/services/workflow_analysis.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/.gitignore +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/__init__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/agent-server/Dockerfile +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/agent-server/README.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/agent-server/main.bicep +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/agent.yaml +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/agentops.yaml +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/foundry.svg +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/icon.png +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/project.gitignore +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/sample-traces.jsonl +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/skills/agentops-agent/SKILL.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/skills/agentops-config/SKILL.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/skills/agentops-dataset/SKILL.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/skills/agentops-eval/SKILL.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/skills/agentops-report/SKILL.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/skills/agentops-workflow/SKILL.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/smoke.jsonl +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/waf-checklist.README.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/templates/waf-checklist.csv +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/utils/__init__.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/utils/azd_env.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/utils/colors.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/utils/dotenv_loader.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/utils/foundry_discovery.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/utils/logging.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/utils/telemetry.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops/utils/yaml.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops_accelerator.egg-info/dependency_links.txt +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops_accelerator.egg-info/entry_points.txt +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/src/agentops_accelerator.egg-info/top_level.txt +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/TESTING.md +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/fixtures/fake_adapter.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/fixtures/fake_eval_runner.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/integration/.gitkeep +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/integration/test_cli_flat_schema.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/integration/test_pipeline_smoke.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/.gitkeep +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_analyzer.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_categories.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_checks_errors.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_checks_foundry_config.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_checks_opex.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_checks_opex_workspace.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_checks_regression.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_checks_safety.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_checks_spec_conformance.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_cli.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_config.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_findings.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_history.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_opex_workspace_check.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_posture_rules.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agent_server.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_agentops_config.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_azd_env.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_azure_resources_discovery.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_cli_cockpit_connection_summary.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_cli_cockpit_port_conflict.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_cli_commands.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_cli_explain.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_cloud_results.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_cloud_runner.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_cockpit.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_diagnostics.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_doctor_catalog.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_doctor_cli_explain.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_dotenv_loader.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_e2e_render.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_eval_analysis.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_evaluators.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_foundry_discovery.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_init_command.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_initializer.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_invocations.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_knowledge_loader.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_llm_assist.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_llm_assist_spec_rules.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_mcp_server.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_official_eval.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_pipeline_publisher.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_pipeline_reporter.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_preflight.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_production_telemetry.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_prompt_deploy.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_release_evidence.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_runtime_conversation.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_setup_wizard.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_skills.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_skills_sync.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_telemetry.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_time_range.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_trace_promotion.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tests/unit/test_workflow_analysis.py +0 -0
- {agentops_accelerator-0.3.2 → agentops_accelerator-0.3.4}/tombstones/vscode/CDN_DEPRECATION_REQUEST.md +0 -0
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"name": "agentops-accelerator",
|
|
14
14
|
"source": "../../plugins/agentops",
|
|
15
15
|
"description": "Copilot agent skills for running standardized evaluation workflows with AgentOps Toolkit and Microsoft Foundry agents.",
|
|
16
|
-
"version": "0.3.
|
|
16
|
+
"version": "0.3.4",
|
|
17
17
|
"keywords": [
|
|
18
18
|
"agentops",
|
|
19
19
|
"evaluation",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"name": "agentops-accelerator",
|
|
14
14
|
"source": "../../plugins/agentops",
|
|
15
15
|
"description": "Copilot agent skills for running standardized evaluation workflows with AgentOps Toolkit and Microsoft Foundry agents.",
|
|
16
|
-
"version": "0.3.
|
|
16
|
+
"version": "0.3.4",
|
|
17
17
|
"keywords": [
|
|
18
18
|
"agentops",
|
|
19
19
|
"evaluation",
|
|
@@ -5,9 +5,99 @@ This format follows [Keep a Changelog](https://keepachangelog.com/) and adheres
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
-
## [0.3.
|
|
8
|
+
## [0.3.4] - 2026-06-01
|
|
9
9
|
|
|
10
10
|
### Fixed
|
|
11
|
+
- **`agentops eval run` in local execution mode no longer fails with
|
|
12
|
+
`Missing environment variables: AZURE_OPENAI_ENDPOINT` when only the
|
|
13
|
+
Foundry project endpoint is configured.** `CONTRIBUTING.md` and the
|
|
14
|
+
user-facing env-var docs both stated that `AZURE_OPENAI_ENDPOINT` is
|
|
15
|
+
"auto-derived from the project endpoint when absent", but
|
|
16
|
+
`pipeline/runtime.py::_model_config` only read the explicit
|
|
17
|
+
`AZURE_OPENAI_ENDPOINT` env var with no fallback — so a fresh workspace
|
|
18
|
+
created by `agentops init` (which writes `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT`
|
|
19
|
+
but not `AZURE_OPENAI_ENDPOINT`) would always trip the missing-env error
|
|
20
|
+
the first time AI-assisted evaluators tried to run locally. The new
|
|
21
|
+
helper `agentops.utils.azure_endpoints.derive_openai_endpoint_from_project`
|
|
22
|
+
trims the trailing `/api/projects/<name>` segment from a Foundry project
|
|
23
|
+
URL (covering both `services.ai.azure.com` and the legacy
|
|
24
|
+
`cognitiveservices.azure.com` hosts) to recover the AI Services account
|
|
25
|
+
base URL, which is exactly what the `openai` and `azure-ai-evaluation`
|
|
26
|
+
SDKs want. `_model_config` now uses the derived value as a fallback
|
|
27
|
+
whenever `AZURE_OPENAI_ENDPOINT` is unset, so the documented behavior
|
|
28
|
+
finally matches the runtime. When `AZURE_OPENAI_DEPLOYMENT` is the only
|
|
29
|
+
thing missing, the error message now points users at the deployment list
|
|
30
|
+
in the Foundry portal *and* mentions the `execution: cloud` escape hatch
|
|
31
|
+
in `agentops.yaml` so the next step is obvious without leaving the
|
|
32
|
+
terminal.
|
|
33
|
+
|
|
34
|
+
## [0.3.3] - 2026-05-31
|
|
35
|
+
|
|
36
|
+
### Changed
|
|
37
|
+
- **Runtime dependencies now have upper bounds so a future SDK major release
|
|
38
|
+
cannot silently break installs.** `pyproject.toml` previously declared every
|
|
39
|
+
Azure-SDK dependency with only a lower bound (e.g. `azure-ai-projects>=2.0.1`),
|
|
40
|
+
so `pip install agentops-accelerator` could resolve `azure-ai-projects 3.x`
|
|
41
|
+
the day after that ships and break the agent-definition serialization (the
|
|
42
|
+
exact failure mode that produced the `invalid_payload — Required properties
|
|
43
|
+
["kind"] are not present` regression below). Each Azure SDK dependency
|
|
44
|
+
(`azure-ai-projects`, `azure-ai-evaluation`, `azure-identity`, `azure-monitor-*`,
|
|
45
|
+
`azure-mgmt-*`) is now constrained to its current major. `pandas`, `fastapi`,
|
|
46
|
+
`uvicorn`, `httpx`, and `markdown` are similarly capped to their next major.
|
|
47
|
+
`cryptography` is intentionally left unbounded so security patches can flow
|
|
48
|
+
through without a coordinated AgentOps release. Lift any of these bounds via
|
|
49
|
+
an explicit PR that exercises the new SDK against `tests/`.
|
|
50
|
+
|
|
51
|
+
- **`agentops workflow generate` now stamps the installed agentops version
|
|
52
|
+
into generated CI/CD templates instead of always installing from
|
|
53
|
+
`git+...@main`.** Every generated `agentops-pr.yml`, `agentops-deploy-*.yml`,
|
|
54
|
+
`agentops-watchdog.yml` (and their Azure DevOps pipeline equivalents) used to
|
|
55
|
+
contain `pip install "agentops-accelerator[...] @ git+https://github.com/Azure/agentops.git@main"`,
|
|
56
|
+
with no version pin and a stale "NOTE: pinned to GitHub main until the next
|
|
57
|
+
package release" comment. User CI runs were therefore non-reproducible: the
|
|
58
|
+
same workflow file pulled different agentops snapshots day to day, which is
|
|
59
|
+
how PO's recorded tutorial took a hard SDK regression mid-record. The
|
|
60
|
+
generator now writes a literal `==X.Y.Z` pin derived from the agentops version
|
|
61
|
+
currently installed on the machine running `agentops workflow generate` — so
|
|
62
|
+
a user who generates workflows against AgentOps `0.3.3` always installs
|
|
63
|
+
`agentops-accelerator==0.3.3` on every CI run, and `agentops-accelerator`
|
|
64
|
+
brings exact-major Azure SDKs along (per the upper bounds above). Editable
|
|
65
|
+
installs (versions carrying a local segment like `+gabcdef` or marked
|
|
66
|
+
`.devN`) keep the `@main` fallback so contributors testing template changes
|
|
67
|
+
still get a resolvable install. Existing user workflows are unaffected until
|
|
68
|
+
the user re-runs `agentops workflow generate --force` against a release of
|
|
69
|
+
AgentOps that ships this change.
|
|
70
|
+
|
|
71
|
+
### Fixed
|
|
72
|
+
- **Doctor regression check no longer flags the previous PR run as "current"
|
|
73
|
+
in CI.** The results-history loader (`agent/sources/results_history.py`)
|
|
74
|
+
was reading the wrong fields from `results.json` and excluding
|
|
75
|
+
`.agentops/results/latest/` from the candidate list. Three coordinated
|
|
76
|
+
schema-alignment fixes restore correctness:
|
|
77
|
+
1. `_summarize` now reads top-level `aggregate_metrics` first (the field
|
|
78
|
+
the orchestrator actually writes, per `core/results.py`), then falls
|
|
79
|
+
back to legacy `metrics`/`run_metrics`. Previously the loader looked
|
|
80
|
+
only at the legacy fields, so every freshly-written local
|
|
81
|
+
`RunSummary` had `metrics = {}` and the regression check could never
|
|
82
|
+
see the current run's metrics.
|
|
83
|
+
2. `_summarize` now reads `summary.overall_passed` first when deriving
|
|
84
|
+
the `run_pass` flag, then falls back to the legacy `summary.run_pass`
|
|
85
|
+
/ `metrics.run_pass` shapes.
|
|
86
|
+
3. `_summarize` now orders runs by `timestamp` → `finished_at` →
|
|
87
|
+
`started_at` → `created_at` → `summary.timestamp`. The previous list
|
|
88
|
+
omitted `finished_at`/`started_at`, which are the two fields
|
|
89
|
+
`results.json` actually contains, so every loaded run defaulted to
|
|
90
|
+
epoch-zero ordering.
|
|
91
|
+
4. `_collect_local_runs` now includes `.agentops/results/latest/` when it
|
|
92
|
+
is the only local results directory. In CI, generated workflows run
|
|
93
|
+
`agentops eval run --output .agentops/results/latest` and write
|
|
94
|
+
nowhere else; the old loader unconditionally skipped `latest/` for
|
|
95
|
+
dev-mode dedup, so in CI `local_runs` was always empty. With cloud
|
|
96
|
+
listing trailing behind by seconds (eventual consistency), the
|
|
97
|
+
regression check would then compute `latest = previous_run` and
|
|
98
|
+
blame the just-completed candidate's coherence/groundedness on the
|
|
99
|
+
prior PR. Dev-mode dedup is preserved: when a timestamped sibling
|
|
100
|
+
exists, `latest/` is still skipped.
|
|
11
101
|
- **Prompt-agent deploy: `stage` no longer fails with `Required properties ["kind"] are not present` against `azure-ai-projects` 2.x.**
|
|
12
102
|
`_copy_definition` previously called `.copy()` on the typed
|
|
13
103
|
`PromptAgentDefinition` returned by `get_version`. In SDK 1.x that
|
{agentops_accelerator-0.3.2/src/agentops_accelerator.egg-info → agentops_accelerator-0.3.4}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentops-accelerator
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.4
|
|
4
4
|
Summary: Release readiness gates and evidence for Microsoft Foundry agents
|
|
5
5
|
License: MIT License
|
|
6
6
|
|
|
@@ -30,25 +30,25 @@ License-File: LICENSE
|
|
|
30
30
|
Requires-Dist: typer<1.0,>=0.12
|
|
31
31
|
Requires-Dist: pydantic<3,>=2
|
|
32
32
|
Requires-Dist: ruamel.yaml<1.0,>=0.18
|
|
33
|
-
Requires-Dist: azure-ai-projects
|
|
33
|
+
Requires-Dist: azure-ai-projects<3.0,>=2.0.1
|
|
34
34
|
Provides-Extra: mcp
|
|
35
35
|
Requires-Dist: mcp<2,>=1.0; extra == "mcp"
|
|
36
36
|
Provides-Extra: foundry
|
|
37
|
-
Requires-Dist: azure-ai-evaluation
|
|
38
|
-
Requires-Dist: azure-identity
|
|
39
|
-
Requires-Dist: azure-monitor-opentelemetry
|
|
40
|
-
Requires-Dist: pandas
|
|
37
|
+
Requires-Dist: azure-ai-evaluation<2.0,>=1.0; extra == "foundry"
|
|
38
|
+
Requires-Dist: azure-identity<2.0,>=1.17; extra == "foundry"
|
|
39
|
+
Requires-Dist: azure-monitor-opentelemetry<2.0,>=1.6; extra == "foundry"
|
|
40
|
+
Requires-Dist: pandas<3.0,>=2.0; extra == "foundry"
|
|
41
41
|
Provides-Extra: agent
|
|
42
|
-
Requires-Dist: fastapi
|
|
43
|
-
Requires-Dist: uvicorn[standard]
|
|
44
|
-
Requires-Dist: httpx
|
|
42
|
+
Requires-Dist: fastapi<1.0,>=0.110; extra == "agent"
|
|
43
|
+
Requires-Dist: uvicorn[standard]<1.0,>=0.30; extra == "agent"
|
|
44
|
+
Requires-Dist: httpx<1.0,>=0.27; extra == "agent"
|
|
45
45
|
Requires-Dist: cryptography>=42; extra == "agent"
|
|
46
|
-
Requires-Dist: markdown
|
|
47
|
-
Requires-Dist: azure-monitor-query
|
|
48
|
-
Requires-Dist: azure-monitor-opentelemetry
|
|
49
|
-
Requires-Dist: azure-identity
|
|
50
|
-
Requires-Dist: azure-mgmt-cognitiveservices
|
|
51
|
-
Requires-Dist: azure-mgmt-monitor
|
|
46
|
+
Requires-Dist: markdown<4.0,>=3.6; extra == "agent"
|
|
47
|
+
Requires-Dist: azure-monitor-query<2.0,>=1.3; extra == "agent"
|
|
48
|
+
Requires-Dist: azure-monitor-opentelemetry<2.0,>=1.6; extra == "agent"
|
|
49
|
+
Requires-Dist: azure-identity<2.0,>=1.17; extra == "agent"
|
|
50
|
+
Requires-Dist: azure-mgmt-cognitiveservices<14.0,>=13.5; extra == "agent"
|
|
51
|
+
Requires-Dist: azure-mgmt-monitor<7.0,>=6.0; extra == "agent"
|
|
52
52
|
Dynamic: license-file
|
|
53
53
|
|
|
54
54
|
<h1 align="center">AgentOps Accelerator</h1>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "agentops-accelerator",
|
|
3
3
|
"displayName": "AgentOps Accelerator — Skills for GitHub Copilot",
|
|
4
4
|
"description": "Copilot agent skills for running standardized evaluation workflows with AgentOps Accelerator and Microsoft Foundry agents.",
|
|
5
|
-
"version": "0.3.
|
|
5
|
+
"version": "0.3.4",
|
|
6
6
|
"publisher": "AgentOpsAccelerator",
|
|
7
7
|
"icon": "icon.png",
|
|
8
8
|
"license": "MIT",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentops-accelerator",
|
|
3
3
|
"description": "Copilot agent skills for running standardized evaluation workflows with AgentOps Accelerator and Microsoft Foundry agents.",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.4",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "AgentOps Accelerator",
|
|
7
7
|
"url": "https://github.com/Azure/agentops"
|
|
@@ -12,29 +12,29 @@ dependencies = [
|
|
|
12
12
|
"typer>=0.12,<1.0",
|
|
13
13
|
"pydantic>=2,<3",
|
|
14
14
|
"ruamel.yaml>=0.18,<1.0",
|
|
15
|
-
"azure-ai-projects>=2.0.1",
|
|
15
|
+
"azure-ai-projects>=2.0.1,<3.0",
|
|
16
16
|
]
|
|
17
17
|
license = { file = "LICENSE" }
|
|
18
18
|
|
|
19
19
|
[project.optional-dependencies]
|
|
20
20
|
mcp = ["mcp>=1.0,<2"]
|
|
21
21
|
foundry = [
|
|
22
|
-
"azure-ai-evaluation>=1.0",
|
|
23
|
-
"azure-identity>=1.17",
|
|
24
|
-
"azure-monitor-opentelemetry>=1.6",
|
|
25
|
-
"pandas>=2.0",
|
|
22
|
+
"azure-ai-evaluation>=1.0,<2.0",
|
|
23
|
+
"azure-identity>=1.17,<2.0",
|
|
24
|
+
"azure-monitor-opentelemetry>=1.6,<2.0",
|
|
25
|
+
"pandas>=2.0,<3.0",
|
|
26
26
|
]
|
|
27
27
|
agent = [
|
|
28
|
-
"fastapi>=0.110",
|
|
29
|
-
"uvicorn[standard]>=0.30",
|
|
30
|
-
"httpx>=0.27",
|
|
28
|
+
"fastapi>=0.110,<1.0",
|
|
29
|
+
"uvicorn[standard]>=0.30,<1.0",
|
|
30
|
+
"httpx>=0.27,<1.0",
|
|
31
31
|
"cryptography>=42",
|
|
32
|
-
"markdown>=3.6",
|
|
33
|
-
"azure-monitor-query>=1.3",
|
|
34
|
-
"azure-monitor-opentelemetry>=1.6",
|
|
35
|
-
"azure-identity>=1.17",
|
|
36
|
-
"azure-mgmt-cognitiveservices>=13.5",
|
|
37
|
-
"azure-mgmt-monitor>=6.0",
|
|
32
|
+
"markdown>=3.6,<4.0",
|
|
33
|
+
"azure-monitor-query>=1.3,<2.0",
|
|
34
|
+
"azure-monitor-opentelemetry>=1.6,<2.0",
|
|
35
|
+
"azure-identity>=1.17,<2.0",
|
|
36
|
+
"azure-mgmt-cognitiveservices>=13.5,<14.0",
|
|
37
|
+
"azure-mgmt-monitor>=6.0,<7.0",
|
|
38
38
|
]
|
|
39
39
|
|
|
40
40
|
[project.scripts]
|
|
@@ -66,7 +66,7 @@ where = ["src"]
|
|
|
66
66
|
|
|
67
67
|
[dependency-groups]
|
|
68
68
|
dev = [
|
|
69
|
-
"azure-ai-evaluation>=1.0",
|
|
69
|
+
"azure-ai-evaluation>=1.0,<2.0",
|
|
70
70
|
"mypy>=1.19.1",
|
|
71
71
|
"pre-commit>=4.0",
|
|
72
72
|
"pytest>=8.0",
|
|
@@ -74,7 +74,12 @@ def _summarize(path: Path) -> Optional[RunSummary]:
|
|
|
74
74
|
if not isinstance(data, dict):
|
|
75
75
|
return None
|
|
76
76
|
|
|
77
|
-
metrics_raw =
|
|
77
|
+
metrics_raw = (
|
|
78
|
+
data.get("aggregate_metrics")
|
|
79
|
+
or data.get("metrics")
|
|
80
|
+
or data.get("run_metrics")
|
|
81
|
+
or {}
|
|
82
|
+
)
|
|
78
83
|
metrics: Dict[str, float] = {}
|
|
79
84
|
if isinstance(metrics_raw, dict):
|
|
80
85
|
for key, value in metrics_raw.items():
|
|
@@ -85,9 +90,11 @@ def _summarize(path: Path) -> Optional[RunSummary]:
|
|
|
85
90
|
|
|
86
91
|
summary = data.get("summary") or {}
|
|
87
92
|
run_pass: Optional[bool] = None
|
|
88
|
-
if isinstance(summary, dict) and "
|
|
93
|
+
if isinstance(summary, dict) and "overall_passed" in summary:
|
|
94
|
+
run_pass = bool(summary["overall_passed"])
|
|
95
|
+
elif isinstance(summary, dict) and "run_pass" in summary:
|
|
89
96
|
run_pass = bool(summary["run_pass"])
|
|
90
|
-
elif "run_pass" in metrics_raw:
|
|
97
|
+
elif isinstance(metrics_raw, dict) and "run_pass" in metrics_raw:
|
|
91
98
|
try:
|
|
92
99
|
run_pass = bool(float(metrics_raw["run_pass"]))
|
|
93
100
|
except (TypeError, ValueError):
|
|
@@ -105,6 +112,8 @@ def _summarize(path: Path) -> Optional[RunSummary]:
|
|
|
105
112
|
|
|
106
113
|
timestamp_raw = (
|
|
107
114
|
data.get("timestamp")
|
|
115
|
+
or data.get("finished_at")
|
|
116
|
+
or data.get("started_at")
|
|
108
117
|
or data.get("created_at")
|
|
109
118
|
or (summary.get("timestamp") if isinstance(summary, dict) else None)
|
|
110
119
|
)
|
|
@@ -184,14 +193,23 @@ def _collect_local_runs(
|
|
|
184
193
|
return []
|
|
185
194
|
|
|
186
195
|
candidates: List[Path] = []
|
|
196
|
+
latest_target: Optional[Path] = None
|
|
187
197
|
for child in base.iterdir():
|
|
188
198
|
if not child.is_dir():
|
|
189
199
|
continue
|
|
200
|
+
target = child / "results.json"
|
|
201
|
+
if not target.is_file():
|
|
202
|
+
continue
|
|
190
203
|
if child.name == "latest":
|
|
204
|
+
latest_target = target
|
|
191
205
|
continue
|
|
192
|
-
target
|
|
193
|
-
|
|
194
|
-
|
|
206
|
+
candidates.append(target)
|
|
207
|
+
# CI workflows write directly to `.agentops/results/latest/` with no
|
|
208
|
+
# timestamped sibling. Include the `latest/` entry only when it is the
|
|
209
|
+
# sole local result so dev-mode runs (which already have a timestamped
|
|
210
|
+
# sibling) are not double-counted.
|
|
211
|
+
if not candidates and latest_target is not None:
|
|
212
|
+
candidates.append(latest_target)
|
|
195
213
|
|
|
196
214
|
summaries: List[RunSummary] = []
|
|
197
215
|
for path in candidates:
|
|
@@ -14,7 +14,7 @@ from html import escape as html_escape
|
|
|
14
14
|
from pathlib import Path
|
|
15
15
|
from textwrap import wrap
|
|
16
16
|
from collections.abc import Sequence
|
|
17
|
-
from typing import Annotated, Optional
|
|
17
|
+
from typing import Annotated, Any, Optional
|
|
18
18
|
|
|
19
19
|
import typer
|
|
20
20
|
|
|
@@ -1554,7 +1554,8 @@ def cmd_init(
|
|
|
1554
1554
|
}
|
|
1555
1555
|
|
|
1556
1556
|
def _on_answer(field_name: str, value: str) -> None:
|
|
1557
|
-
|
|
1557
|
+
partial_kwargs: dict[str, Any] = {field_name: value}
|
|
1558
|
+
partial = WizardAnswers(**partial_kwargs)
|
|
1558
1559
|
try:
|
|
1559
1560
|
partial_result = apply_answers(
|
|
1560
1561
|
workspace,
|
|
@@ -65,10 +65,22 @@ def _credential() -> Any:
|
|
|
65
65
|
|
|
66
66
|
|
|
67
67
|
def _model_config() -> Dict[str, str]:
|
|
68
|
-
from agentops.utils.azure_endpoints import
|
|
68
|
+
from agentops.utils.azure_endpoints import (
|
|
69
|
+
derive_openai_endpoint_from_project,
|
|
70
|
+
normalize_azure_openai_endpoint,
|
|
71
|
+
)
|
|
69
72
|
|
|
70
73
|
raw_endpoint = os.getenv("AZURE_OPENAI_ENDPOINT")
|
|
71
74
|
endpoint = normalize_azure_openai_endpoint(raw_endpoint)
|
|
75
|
+
if not endpoint:
|
|
76
|
+
# CONTRIBUTING.md promises ``AZURE_OPENAI_ENDPOINT`` is "auto-derived
|
|
77
|
+
# from the project endpoint when absent". The Foundry project URL
|
|
78
|
+
# already encodes the AI Services account host, so we can recover
|
|
79
|
+
# the base inference endpoint without an extra round-trip or any
|
|
80
|
+
# new wizard prompt.
|
|
81
|
+
endpoint = derive_openai_endpoint_from_project(
|
|
82
|
+
os.getenv("AZURE_AI_FOUNDRY_PROJECT_ENDPOINT")
|
|
83
|
+
)
|
|
72
84
|
deployment = os.getenv("AZURE_OPENAI_DEPLOYMENT") or os.getenv(
|
|
73
85
|
"AZURE_AI_MODEL_DEPLOYMENT_NAME"
|
|
74
86
|
)
|
|
@@ -85,9 +97,17 @@ def _model_config() -> Dict[str, str]:
|
|
|
85
97
|
if not deployment:
|
|
86
98
|
missing.append("AZURE_OPENAI_DEPLOYMENT")
|
|
87
99
|
if missing:
|
|
100
|
+
hint = ""
|
|
101
|
+
if "AZURE_OPENAI_DEPLOYMENT" in missing:
|
|
102
|
+
hint = (
|
|
103
|
+
" Set AZURE_OPENAI_DEPLOYMENT to the name of a model "
|
|
104
|
+
"deployment in your Foundry project (Models + endpoints "
|
|
105
|
+
"in the portal), or switch the run to `execution: cloud` "
|
|
106
|
+
"in agentops.yaml so Foundry runs the evaluators server-side."
|
|
107
|
+
)
|
|
88
108
|
raise RuntimeError(
|
|
89
109
|
"AI-assisted evaluators require an evaluator model. "
|
|
90
|
-
"Missing environment variables: " + ", ".join(missing)
|
|
110
|
+
"Missing environment variables: " + ", ".join(missing) + "." + hint
|
|
91
111
|
)
|
|
92
112
|
|
|
93
113
|
config: Dict[str, str] = {
|
|
@@ -27,6 +27,42 @@ _TEMPLATE_PACKAGE = "agentops.templates"
|
|
|
27
27
|
_CLOUD_EVAL_CONFIG_NAME = ".agentops.cloud.yaml"
|
|
28
28
|
_CI_EVAL_OUTPUT = ".agentops/results/latest"
|
|
29
29
|
|
|
30
|
+
# Git ref used by the dev/editable-install fallback when stamping the agentops
|
|
31
|
+
# package version into generated CI/CD templates. Kept here so tests can target
|
|
32
|
+
# the same constant without parsing template output.
|
|
33
|
+
AGENTOPS_DEV_INSTALL_SPEC = " @ git+https://github.com/Azure/agentops.git@main"
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def _agentops_install_spec(version: str | None = None) -> str:
|
|
37
|
+
"""Return the pip version-spec suffix used in generated workflows.
|
|
38
|
+
|
|
39
|
+
For a clean public release (e.g. ``0.3.2``, ``0.3.2.post1``, ``0.3.2rc1``)
|
|
40
|
+
we pin the exact version so user CI runs are reproducible regardless of
|
|
41
|
+
when they are triggered. For editable or dev installs (versions carrying
|
|
42
|
+
a local segment such as ``+gabcdef`` or marked as dev-releases) we fall
|
|
43
|
+
back to ``@main`` so contributors testing template changes still get a
|
|
44
|
+
resolvable install.
|
|
45
|
+
"""
|
|
46
|
+
|
|
47
|
+
if version is None:
|
|
48
|
+
from agentops import __version__
|
|
49
|
+
|
|
50
|
+
resolved = __version__
|
|
51
|
+
else:
|
|
52
|
+
resolved = version
|
|
53
|
+
try:
|
|
54
|
+
from packaging.version import InvalidVersion, Version
|
|
55
|
+
except ImportError: # pragma: no cover - packaging ships with pip/setuptools
|
|
56
|
+
return AGENTOPS_DEV_INSTALL_SPEC
|
|
57
|
+
|
|
58
|
+
try:
|
|
59
|
+
parsed = Version(resolved)
|
|
60
|
+
except InvalidVersion:
|
|
61
|
+
return AGENTOPS_DEV_INSTALL_SPEC
|
|
62
|
+
|
|
63
|
+
if parsed.local is not None or parsed.is_devrelease:
|
|
64
|
+
return AGENTOPS_DEV_INSTALL_SPEC
|
|
65
|
+
return f"=={resolved}"
|
|
30
66
|
# CI/CD platforms supported by ``agentops workflow generate``.
|
|
31
67
|
PLATFORMS: Tuple[str, ...] = ("github", "azure-devops")
|
|
32
68
|
|
|
@@ -648,7 +684,10 @@ def generate_cicd_workflows(
|
|
|
648
684
|
continue
|
|
649
685
|
seen.add(kind)
|
|
650
686
|
result.kinds.append(kind)
|
|
651
|
-
substitutions: dict[str, str] = {
|
|
687
|
+
substitutions: dict[str, str] = {
|
|
688
|
+
"__DOCTOR_GATE__": doctor_gate,
|
|
689
|
+
"__AGENTOPS_INSTALL_SPEC__": _agentops_install_spec(),
|
|
690
|
+
}
|
|
652
691
|
eval_config = (
|
|
653
692
|
"${{ inputs.config || 'agentops.yaml' }}"
|
|
654
693
|
if platform == "github" and kind == "pr"
|
|
@@ -74,7 +74,7 @@ __AILZ_PREFLIGHT_COMMAND__
|
|
|
74
74
|
versionSpec: "3.11"
|
|
75
75
|
- bash: |
|
|
76
76
|
python -m pip install --upgrade pip
|
|
77
|
-
python -m pip install "agentops-accelerator[foundry]
|
|
77
|
+
python -m pip install "agentops-accelerator[foundry]__AGENTOPS_INSTALL_SPEC__"
|
|
78
78
|
displayName: Install AgentOps Toolkit
|
|
79
79
|
|
|
80
80
|
__EVAL_TASKS__
|
|
@@ -50,7 +50,7 @@ stages:
|
|
|
50
50
|
|
|
51
51
|
- bash: |
|
|
52
52
|
python -m pip install --upgrade pip
|
|
53
|
-
python -m pip install "agentops-accelerator[foundry]
|
|
53
|
+
python -m pip install "agentops-accelerator[foundry]__AGENTOPS_INSTALL_SPEC__"
|
|
54
54
|
displayName: Install AgentOps Toolkit
|
|
55
55
|
|
|
56
56
|
__EVAL_TASKS__
|
|
@@ -74,7 +74,7 @@ __AILZ_PREFLIGHT_COMMAND__
|
|
|
74
74
|
versionSpec: "3.11"
|
|
75
75
|
- bash: |
|
|
76
76
|
python -m pip install --upgrade pip
|
|
77
|
-
python -m pip install "agentops-accelerator[foundry,agent]
|
|
77
|
+
python -m pip install "agentops-accelerator[foundry,agent]__AGENTOPS_INSTALL_SPEC__"
|
|
78
78
|
displayName: Install AgentOps Toolkit
|
|
79
79
|
|
|
80
80
|
__EVAL_TASKS__
|
|
@@ -48,7 +48,7 @@ stages:
|
|
|
48
48
|
|
|
49
49
|
- bash: |
|
|
50
50
|
python -m pip install --upgrade pip
|
|
51
|
-
python -m pip install "agentops-accelerator[foundry,agent]
|
|
51
|
+
python -m pip install "agentops-accelerator[foundry,agent]__AGENTOPS_INSTALL_SPEC__"
|
|
52
52
|
displayName: Install AgentOps Toolkit
|
|
53
53
|
|
|
54
54
|
__EVAL_TASKS__
|
|
@@ -48,7 +48,7 @@ stages:
|
|
|
48
48
|
scriptLocation: inlineScript
|
|
49
49
|
inlineScript: |
|
|
50
50
|
python -m pip install --upgrade pip
|
|
51
|
-
python -m pip install "agentops-accelerator[foundry]
|
|
51
|
+
python -m pip install "agentops-accelerator[foundry]__AGENTOPS_INSTALL_SPEC__"
|
|
52
52
|
python -m agentops.pipeline.prompt_deploy stage \
|
|
53
53
|
--config "$(AGENTOPS_CONFIG)" \
|
|
54
54
|
--environment "$(TARGET_ENVIRONMENT)" \
|
|
@@ -93,7 +93,7 @@ stages:
|
|
|
93
93
|
|
|
94
94
|
- bash: |
|
|
95
95
|
python -m pip install --upgrade pip
|
|
96
|
-
python -m pip install "agentops-accelerator[foundry,agent]
|
|
96
|
+
python -m pip install "agentops-accelerator[foundry,agent]__AGENTOPS_INSTALL_SPEC__"
|
|
97
97
|
displayName: Install AgentOps Toolkit
|
|
98
98
|
|
|
99
99
|
__EVAL_TASKS__
|
|
@@ -153,7 +153,7 @@ __EVAL_TASKS__
|
|
|
153
153
|
versionSpec: "3.11"
|
|
154
154
|
|
|
155
155
|
- bash: |
|
|
156
|
-
python -m pip install "agentops-
|
|
156
|
+
python -m pip install "agentops-accelerator__AGENTOPS_INSTALL_SPEC__"
|
|
157
157
|
python -m agentops.pipeline.prompt_deploy summarize \
|
|
158
158
|
--deployment ".agentops/deployments/foundry-agent.json" \
|
|
159
159
|
--environment "$(TARGET_ENVIRONMENT)"
|
|
@@ -74,7 +74,7 @@ __AILZ_PREFLIGHT_COMMAND__
|
|
|
74
74
|
versionSpec: "3.11"
|
|
75
75
|
- bash: |
|
|
76
76
|
python -m pip install --upgrade pip
|
|
77
|
-
python -m pip install "agentops-accelerator[foundry]
|
|
77
|
+
python -m pip install "agentops-accelerator[foundry]__AGENTOPS_INSTALL_SPEC__"
|
|
78
78
|
displayName: Install AgentOps Toolkit
|
|
79
79
|
|
|
80
80
|
__EVAL_TASKS__
|
|
@@ -46,7 +46,7 @@ stages:
|
|
|
46
46
|
|
|
47
47
|
- bash: |
|
|
48
48
|
python -m pip install --upgrade pip
|
|
49
|
-
python -m pip install "agentops-accelerator[foundry]
|
|
49
|
+
python -m pip install "agentops-accelerator[foundry]__AGENTOPS_INSTALL_SPEC__"
|
|
50
50
|
displayName: Install AgentOps Toolkit
|
|
51
51
|
|
|
52
52
|
__EVAL_TASKS__
|
|
@@ -72,7 +72,7 @@ stages:
|
|
|
72
72
|
scriptLocation: inlineScript
|
|
73
73
|
inlineScript: |
|
|
74
74
|
python -m pip install --upgrade pip
|
|
75
|
-
python -m pip install "agentops-accelerator[foundry]
|
|
75
|
+
python -m pip install "agentops-accelerator[foundry]__AGENTOPS_INSTALL_SPEC__"
|
|
76
76
|
python -m agentops.pipeline.prompt_deploy stage \
|
|
77
77
|
--config "$(AGENTOPS_CONFIG)" \
|
|
78
78
|
--environment "$(TARGET_ENVIRONMENT)" \
|
|
@@ -113,7 +113,7 @@ stages:
|
|
|
113
113
|
|
|
114
114
|
- bash: |
|
|
115
115
|
python -m pip install --upgrade pip
|
|
116
|
-
python -m pip install "agentops-accelerator[foundry,agent]
|
|
116
|
+
python -m pip install "agentops-accelerator[foundry,agent]__AGENTOPS_INSTALL_SPEC__"
|
|
117
117
|
displayName: Install AgentOps Toolkit
|
|
118
118
|
|
|
119
119
|
__EVAL_TASKS__
|
|
@@ -53,8 +53,7 @@ stages:
|
|
|
53
53
|
|
|
54
54
|
- bash: |
|
|
55
55
|
python -m pip install --upgrade pip
|
|
56
|
-
|
|
57
|
-
python -m pip install "agentops-accelerator[foundry,agent] @ git+https://github.com/Azure/agentops.git@main"
|
|
56
|
+
python -m pip install "agentops-accelerator[foundry,agent]__AGENTOPS_INSTALL_SPEC__"
|
|
58
57
|
displayName: Install AgentOps Toolkit
|
|
59
58
|
|
|
60
59
|
__EVAL_TASKS__
|
|
@@ -65,7 +65,7 @@ stages:
|
|
|
65
65
|
scriptLocation: inlineScript
|
|
66
66
|
inlineScript: |
|
|
67
67
|
python -m pip install --upgrade pip
|
|
68
|
-
python -m pip install "agentops-accelerator[foundry,agent]
|
|
68
|
+
python -m pip install "agentops-accelerator[foundry,agent]__AGENTOPS_INSTALL_SPEC__"
|
|
69
69
|
agentops doctor --workspace . --out .agentops/agent/report.md \
|
|
70
70
|
--severity-fail critical --evidence-pack
|
|
71
71
|
env:
|
|
@@ -114,7 +114,7 @@ __AILZ_PREFLIGHT_COMMAND__
|
|
|
114
114
|
|
|
115
115
|
- name: Install AgentOps Toolkit
|
|
116
116
|
run: |
|
|
117
|
-
uv pip install --system "agentops-accelerator[foundry]
|
|
117
|
+
uv pip install --system "agentops-accelerator[foundry]__AGENTOPS_INSTALL_SPEC__"
|
|
118
118
|
|
|
119
119
|
__EVAL_STEPS__
|
|
120
120
|
|
|
@@ -66,9 +66,7 @@ jobs:
|
|
|
66
66
|
|
|
67
67
|
- name: Install AgentOps Toolkit
|
|
68
68
|
run: |
|
|
69
|
-
|
|
70
|
-
# Switch to `uv pip install --system "agentops-accelerator[foundry]"` after release.
|
|
71
|
-
uv pip install --system "agentops-accelerator[foundry] @ git+https://github.com/Azure/agentops.git@main"
|
|
69
|
+
uv pip install --system "agentops-accelerator[foundry]__AGENTOPS_INSTALL_SPEC__"
|
|
72
70
|
|
|
73
71
|
__EVAL_STEPS__
|
|
74
72
|
|
|
@@ -106,7 +106,7 @@ __AILZ_PREFLIGHT_COMMAND__
|
|
|
106
106
|
enable-cache: false
|
|
107
107
|
|
|
108
108
|
- name: Install AgentOps Toolkit
|
|
109
|
-
run: uv pip install --system "agentops-accelerator[foundry,agent]
|
|
109
|
+
run: uv pip install --system "agentops-accelerator[foundry,agent]__AGENTOPS_INSTALL_SPEC__"
|
|
110
110
|
__EVAL_STEPS__
|
|
111
111
|
- name: Generate release evidence
|
|
112
112
|
if: always()
|
|
@@ -73,9 +73,7 @@ jobs:
|
|
|
73
73
|
|
|
74
74
|
- name: Install AgentOps Toolkit
|
|
75
75
|
run: |
|
|
76
|
-
|
|
77
|
-
# Switch to `uv pip install --system "agentops-accelerator[foundry,agent]"` after release.
|
|
78
|
-
uv pip install --system "agentops-accelerator[foundry,agent] @ git+https://github.com/Azure/agentops.git@main"
|
|
76
|
+
uv pip install --system "agentops-accelerator[foundry,agent]__AGENTOPS_INSTALL_SPEC__"
|
|
79
77
|
|
|
80
78
|
__EVAL_STEPS__
|
|
81
79
|
|
|
@@ -60,7 +60,7 @@ jobs:
|
|
|
60
60
|
|
|
61
61
|
- name: Install AgentOps Toolkit
|
|
62
62
|
run: |
|
|
63
|
-
uv pip install --system "agentops-accelerator[foundry,agent]
|
|
63
|
+
uv pip install --system "agentops-accelerator[foundry,agent]__AGENTOPS_INSTALL_SPEC__"
|
|
64
64
|
|
|
65
65
|
- name: Create candidate agent version from prompt_file
|
|
66
66
|
env:
|
|
@@ -117,7 +117,7 @@ jobs:
|
|
|
117
117
|
|
|
118
118
|
- name: Install AgentOps Toolkit
|
|
119
119
|
run: |
|
|
120
|
-
uv pip install --system "agentops-accelerator[foundry]
|
|
120
|
+
uv pip install --system "agentops-accelerator[foundry]__AGENTOPS_INSTALL_SPEC__"
|
|
121
121
|
|
|
122
122
|
__EVAL_STEPS__
|
|
123
123
|
|
|
@@ -181,7 +181,7 @@ __EVAL_STEPS__
|
|
|
181
181
|
|
|
182
182
|
- name: Install AgentOps Toolkit
|
|
183
183
|
run: |
|
|
184
|
-
python -m pip install "agentops-
|
|
184
|
+
python -m pip install "agentops-accelerator__AGENTOPS_INSTALL_SPEC__"
|
|
185
185
|
|
|
186
186
|
- name: Mark candidate as deployed
|
|
187
187
|
run: |
|
|
@@ -109,7 +109,7 @@ __AILZ_PREFLIGHT_COMMAND__
|
|
|
109
109
|
enable-cache: false
|
|
110
110
|
|
|
111
111
|
- name: Install AgentOps Toolkit
|
|
112
|
-
run: uv pip install --system "agentops-accelerator[foundry]
|
|
112
|
+
run: uv pip install --system "agentops-accelerator[foundry]__AGENTOPS_INSTALL_SPEC__"
|
|
113
113
|
__EVAL_STEPS__
|
|
114
114
|
- name: Upload AgentOps results
|
|
115
115
|
if: always()
|