Skip to content

Commit 903d7a2

Browse files
committed
fix feedback command and bump aks-mcp
1 parent 5c7b1d9 commit 903d7a2

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

src/aks-agent/HISTORY.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ To release a new version, please select a new version number (usually plus 1 to
1212
Pending
1313
+++++++
1414

15+
1.0.0b7
16+
+++++++
17+
* Bump aks-mcp to v0.0.10 - here are the important and notable changes:
18+
* Fix: /health for http, sse by @gossion
19+
* Fix: enforce json output for az monitor metrics and aks tools by @feiskyer
20+
* Fix: correct resource url by @gossion
21+
* Fix feedback slash command
22+
1523
1.0.0b6
1624
+++++++
1725
* Introduce the new `az aks agent-init` command for better cli interaction.

src/aks-agent/azext_aks_agent/_consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
CONST_MCP_BINARY_NAME = "aks-mcp"
2727
CONST_MCP_DEFAULT_PORT = 8003
2828
CONST_MCP_DEFAULT_URL = "http://localhost:8003/sse"
29-
CONST_MCP_MIN_VERSION = "0.0.9"
29+
CONST_MCP_MIN_VERSION = "0.0.10"
3030
CONST_MCP_GITHUB_REPO = "Azure/aks-mcp"
3131
CONST_MCP_BINARY_DIR = "bin"

src/aks-agent/azext_aks_agent/agent/telemetry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def track_agent_feedback(self, feedback):
9292
feedback_filtered = Feedback()
9393
feedback_filtered.user_feedback = feedback.user_feedback
9494
feedback_metadata = FeedbackMetadata()
95-
feedback_metadata.model = feedback.metadata.model
95+
feedback_metadata.llm = feedback.metadata.llm
9696
feedback_filtered.metadata = feedback_metadata
9797
self.track("AgentCLIFeedback", properties={"feedback": json.dumps(feedback_filtered.to_dict())})
9898
# Flush the telemetry data immediately to avoid too much data being sent at once

src/aks-agent/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from setuptools import find_packages, setup
1111

12-
VERSION = "1.0.0b6"
12+
VERSION = "1.0.0b7"
1313

1414
CLASSIFIERS = [
1515
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)