Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"name": "agentops-accelerator",
"source": "../../plugins/agentops",
"description": "Copilot agent skills for running standardized evaluation workflows with AgentOps Toolkit and Microsoft Foundry agents.",
"version": "0.6.0",
"version": "0.8.0",
"keywords": [
"agentops",
"evaluation",
Expand Down
2 changes: 1 addition & 1 deletion .github/plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"name": "agentops-accelerator",
"source": "../../plugins/agentops",
"description": "Copilot agent skills for running standardized evaluation workflows with AgentOps Toolkit and Microsoft Foundry agents.",
"version": "0.6.0",
"version": "0.8.0",
"keywords": [
"agentops",
"evaluation",
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ This format follows [Keep a Changelog](https://keepachangelog.com/) and adheres

## [Unreleased]

## [0.8.0] - 2026-07-14

### Added
- Add a read-only **Agent behavior** tab to the Foundry operations Azure Monitor
workbook, with versioned `AppEvents` / `customEvents` normalization, explicit
Expand Down
2 changes: 1 addition & 1 deletion plugins/agentops/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "agentops-accelerator",
"displayName": "AgentOps Accelerator — Skills for GitHub Copilot",
"description": "Copilot agent skills for running standardized evaluation workflows with AgentOps Accelerator and Microsoft Foundry agents.",
"version": "0.6.0",
"version": "0.8.0",
"publisher": "AgentOpsAccelerator",
"icon": "icon.png",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion plugins/agentops/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "agentops-accelerator",
"description": "Copilot agent skills for running standardized evaluation workflows with AgentOps Accelerator and Microsoft Foundry agents.",
"version": "0.6.0",
"version": "0.8.0",
"author": {
"name": "AgentOps Accelerator",
"url": "https://github.com/Azure/agentops"
Expand Down
1 change: 0 additions & 1 deletion src/agentops/core/agentops_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,6 @@ class AgentOpsConfig(BaseModel):
protocol: Optional[Protocol] = None
request_field: Optional[str] = None
response_field: Optional[str] = None
response_fields: Dict[str, str] = Field(default_factory=dict)
tool_calls_field: Optional[str] = None
response_fields: Dict[str, str] = Field(
default_factory=dict,
Expand Down
7 changes: 4 additions & 3 deletions src/agentops/services/azd_eval_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -831,6 +831,7 @@ def _azd_evaluator_selection_from_config(
data = load_yaml(config_path)
raw_evaluators = data.get("evaluators")
names: list[str] = []
signals: list[str]
if isinstance(raw_evaluators, list):
for item in raw_evaluators:
raw_name = item.get("name") if isinstance(item, dict) else item
Expand All @@ -841,7 +842,7 @@ def _azd_evaluator_selection_from_config(
if mapped and mapped not in names:
names.append(mapped)
selection_source = "explicit agentops.yaml evaluators"
signals = ("Using explicit evaluators from agentops.yaml.",)
signals = ["Using explicit evaluators from agentops.yaml."]
else:
selection_source = "AgentOps recommendation"
signals = []
Expand All @@ -861,10 +862,10 @@ def _azd_evaluator_selection_from_config(
names.append(mapped)
except (FileNotFoundError, OSError, ValueError) as exc:
selection_source = "baseline fallback"
signals = (
signals = [
f"Could not inspect dataset for evaluator inference: {exc}",
"Using baseline evaluators only.",
)
]
if not names:
names.extend(_DEFAULT_AZD_EVALUATORS)
raw_rubrics = data.get("rubrics")
Expand Down
Loading