main
py 11 lines 278 Bytes
Raw
1 """Version metadata helpers for the A0 connector plugin."""
2 from __future__ import annotations
3
4
5 def agent_zero_version() -> str:
6 try:
7 from helpers import git
8
9 return str(git.get_version()).strip() or "unknown"
10 except Exception:
11 return "unknown"