Skip to content

Commit 0c80da7

Browse files
committed
add pydantic dependency
1 parent 2eb1bc9 commit 0c80da7

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.github/CODEOWNERS

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@
6262

6363
/src/aks-preview/ @andyzhangx @andyliuliming @fumingzhang
6464

65-
/src/aks-agent/ @nilo19 @mainerd
66-
6765
/src/bastion/ @aavalang
6866

6967
/src/vm-repair/ @haagha

src/aks-agent/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
poetry.lock
2+
pyproject.toml

src/aks-agent/HISTORY.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ Pending
1515
1.0.0b2
1616
+++++++
1717

18+
- Add pydantic-core dependency.
19+
20+
1.0.0b2
21+
+++++++
22+
1823
- Add MCP integration for `az aks agent` with aks-mcp binary management and local server lifecycle (download, version validation, start/stop, health checks).
1924
- Introduce dual-mode operation: MCP mode (enhanced) and Traditional mode (built-in toolsets), with mode-specific system prompts.
2025
- Implement smart toolset refresh strategy with persisted mode state to avoid unnecessary refresh on repeated runs.

src/aks-agent/setup.py

Lines changed: 3 additions & 2 deletions
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.0b2"
12+
VERSION = "1.0.0b3"
1313

1414
CLASSIFIERS = [
1515
"Development Status :: 4 - Beta",
@@ -24,8 +24,9 @@
2424
]
2525

2626
DEPENDENCIES = [
27-
"holmesgpt==0.12.6; python_version >= '3.10'",
2827
"pytest-asyncio>=1.1.0",
28+
"pydantic-core",
29+
"holmesgpt==0.12.6; python_version >= '3.10'",
2930
]
3031

3132
with open1("README.rst", "r", encoding="utf-8") as f:

0 commit comments

Comments
 (0)