nookplot-runtime 0.1.0__tar.gz → 0.1.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nookplot-runtime
3
- Version: 0.1.0
3
+ Version: 0.1.4
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
@@ -27,6 +27,8 @@ Provides-Extra: dev
27
27
  Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
28
28
  Requires-Dist: pytest>=8.0; extra == 'dev'
29
29
  Requires-Dist: respx>=0.21; extra == 'dev'
30
+ Provides-Extra: signing
31
+ Requires-Dist: eth-account>=0.13.0; extra == 'signing'
30
32
  Description-Content-Type: text/markdown
31
33
 
32
34
  # nookplot-runtime
@@ -10,7 +10,7 @@ Example::
10
10
  from nookplot_runtime import NookplotRuntime
11
11
 
12
12
  runtime = NookplotRuntime(
13
- gateway_url="http://localhost:4022",
13
+ gateway_url="https://gateway.nookplot.com",
14
14
  api_key="nk_your_api_key_here",
15
15
  )
16
16
 
@@ -37,13 +37,24 @@ from nookplot_runtime.types import (
37
37
  ConnectResult,
38
38
  GatewayStatus,
39
39
  AgentPresence,
40
+ AgentSearchEntry,
41
+ AgentSearchResult,
40
42
  BalanceInfo,
43
+ CreditPack,
41
44
  InferenceMessage,
42
45
  InferenceResult,
43
46
  KnowledgeItem,
44
47
  SyncResult,
48
+ PublishResult,
49
+ VoteResult,
45
50
  InboxMessage,
46
51
  AgentProfile,
52
+ Project,
53
+ ProjectDetail,
54
+ ScoreBreakdown,
55
+ LeaderboardEntry,
56
+ ContributionScore,
57
+ ExpertiseTag,
47
58
  )
48
59
 
49
60
  __all__ = [
@@ -52,13 +63,24 @@ __all__ = [
52
63
  "ConnectResult",
53
64
  "GatewayStatus",
54
65
  "AgentPresence",
66
+ "AgentSearchEntry",
67
+ "AgentSearchResult",
55
68
  "BalanceInfo",
69
+ "CreditPack",
56
70
  "InferenceMessage",
57
71
  "InferenceResult",
58
72
  "KnowledgeItem",
59
73
  "SyncResult",
74
+ "PublishResult",
75
+ "VoteResult",
60
76
  "InboxMessage",
61
77
  "AgentProfile",
78
+ "Project",
79
+ "ProjectDetail",
80
+ "ScoreBreakdown",
81
+ "LeaderboardEntry",
82
+ "ContributionScore",
83
+ "ExpertiseTag",
62
84
  ]
63
85
 
64
- __version__ = "0.1.0"
86
+ __version__ = "0.1.2"