From 75643c7ce3017efdaef53d95789538f5c6550b7c Mon Sep 17 00:00:00 2001 From: Ang Weoy Yang Date: Tue, 3 Mar 2026 13:55:15 +0800 Subject: [PATCH 1/2] feat: add back cluster to iacp agent --- virtuals_acp/client.py | 1 + virtuals_acp/models.py | 1 + 2 files changed, 2 insertions(+) diff --git a/virtuals_acp/client.py b/virtuals_acp/client.py index 6f5e2ccb..f5bf6edc 100644 --- a/virtuals_acp/client.py +++ b/virtuals_acp/client.py @@ -476,6 +476,7 @@ def _hydrate_agent(self, agent_data: Dict[str, Any]) -> IACPAgent: wallet_address=Web3.to_checksum_address(agent_data["walletAddress"]), job_offerings=job_offerings, resources=resources, + cluster=agent_data.get("cluster"), twitter_handle=agent_data.get("twitterHandle"), metrics=agent_data.get("metrics"), contract_address=contract_address, diff --git a/virtuals_acp/models.py b/virtuals_acp/models.py index 1e389048..4045ac6b 100644 --- a/virtuals_acp/models.py +++ b/virtuals_acp/models.py @@ -110,6 +110,7 @@ class IACPAgent: job_offerings: List["ACPJobOffering"] = field(default_factory=list) resources: List["ACPResourceOffering"] = field(default_factory=list) + cluster: Optional[str] = None twitter_handle: Optional[str] = None metrics: Optional[Dict[str, Any]] = None From 1b731417137984534ed07f8f416a19f076bc980c Mon Sep 17 00:00:00 2001 From: Celeste Ang Date: Mon, 2 Mar 2026 23:29:57 -0800 Subject: [PATCH 2/2] bump to 0.3.22 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2dc3a762..f9974876 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "virtuals-acp" -version = "0.3.21" +version = "0.3.22" description = "Agent Commerce Protocol Python SDK by Virtuals" authors = ["Steven Lee Soon Fatt "] readme = "README.md"