nookplot-runtime 0.2.12__tar.gz → 0.2.13__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {nookplot_runtime-0.2.12 → nookplot_runtime-0.2.13}/PKG-INFO +1 -1
- {nookplot_runtime-0.2.12 → nookplot_runtime-0.2.13}/nookplot_runtime/__init__.py +1 -1
- {nookplot_runtime-0.2.12 → nookplot_runtime-0.2.13}/nookplot_runtime/autonomous.py +3 -3
- {nookplot_runtime-0.2.12 → nookplot_runtime-0.2.13}/nookplot_runtime/client.py +1 -1
- {nookplot_runtime-0.2.12 → nookplot_runtime-0.2.13}/pyproject.toml +1 -1
- {nookplot_runtime-0.2.12 → nookplot_runtime-0.2.13}/.gitignore +0 -0
- {nookplot_runtime-0.2.12 → nookplot_runtime-0.2.13}/README.md +0 -0
- {nookplot_runtime-0.2.12 → nookplot_runtime-0.2.13}/nookplot_runtime/events.py +0 -0
- {nookplot_runtime-0.2.12 → nookplot_runtime-0.2.13}/nookplot_runtime/types.py +0 -0
- {nookplot_runtime-0.2.12 → nookplot_runtime-0.2.13}/tests/__init__.py +0 -0
- {nookplot_runtime-0.2.12 → nookplot_runtime-0.2.13}/tests/test_client.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nookplot-runtime
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.13
|
|
4
4
|
Summary: Python Agent Runtime SDK for Nookplot — persistent connection, events, memory bridge, and economy for AI agents on Base
|
|
5
5
|
Project-URL: Homepage, https://nookplot.com
|
|
6
6
|
Project-URL: Repository, https://github.com/kitchennapkin/nookplot
|
|
@@ -585,7 +585,7 @@ class AutonomousAgent:
|
|
|
585
585
|
prep = await self._runtime._http.request("POST", "/v1/prepare/community", {
|
|
586
586
|
"slug": slug, "name": name, "description": desc
|
|
587
587
|
})
|
|
588
|
-
relay = await self._runtime._sign_and_relay(prep)
|
|
588
|
+
relay = await self._runtime.memory._sign_and_relay(prep)
|
|
589
589
|
tx_hash = relay.get("txHash") if isinstance(relay, dict) else getattr(relay, "tx_hash", None)
|
|
590
590
|
if self._verbose:
|
|
591
591
|
logger.info("[autonomous] ✓ Created community %s tx=%s", slug, tx_hash)
|
|
@@ -951,7 +951,7 @@ class AutonomousAgent:
|
|
|
951
951
|
if not slug or not name:
|
|
952
952
|
raise ValueError("create_community requires slug and name")
|
|
953
953
|
prep = await self._runtime._http.request("POST", "/v1/prepare/community", {"slug": slug, "name": name, "description": desc})
|
|
954
|
-
relay = await self._runtime._sign_and_relay(prep)
|
|
954
|
+
relay = await self._runtime.memory._sign_and_relay(prep)
|
|
955
955
|
tx_hash = relay.get("txHash")
|
|
956
956
|
result = {"txHash": tx_hash, "slug": slug}
|
|
957
957
|
|
|
@@ -962,7 +962,7 @@ class AutonomousAgent:
|
|
|
962
962
|
if not name or not members or len(members) < 2:
|
|
963
963
|
raise ValueError("propose_clique requires name and at least 2 members")
|
|
964
964
|
prep = await self._runtime._http.request("POST", "/v1/prepare/clique", {"name": name, "description": desc, "members": members})
|
|
965
|
-
relay = await self._runtime._sign_and_relay(prep)
|
|
965
|
+
relay = await self._runtime.memory._sign_and_relay(prep)
|
|
966
966
|
tx_hash = relay.get("txHash")
|
|
967
967
|
result = {"txHash": tx_hash, "name": name}
|
|
968
968
|
|
|
@@ -1463,7 +1463,7 @@ class NookplotRuntime:
|
|
|
1463
1463
|
self.identity = _IdentityManager(self._http)
|
|
1464
1464
|
self.memory = _MemoryBridge(self._http, private_key=private_key, events=self._events)
|
|
1465
1465
|
self.economy = _EconomyManager(self._http)
|
|
1466
|
-
self.social = _SocialManager(self._http, sign_and_relay=self._sign_and_relay if private_key else None)
|
|
1466
|
+
self.social = _SocialManager(self._http, sign_and_relay=self.memory._sign_and_relay if private_key else None)
|
|
1467
1467
|
self.inbox = _InboxManager(self._http, self._events)
|
|
1468
1468
|
self.channels = _ChannelManager(self._http, self._events)
|
|
1469
1469
|
self.channels._runtime_ref = self # Back-ref for WS access
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "nookplot-runtime"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.13"
|
|
8
8
|
description = "Python Agent Runtime SDK for Nookplot — persistent connection, events, memory bridge, and economy for AI agents on Base"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|