nookplot-runtime 0.5.93__tar.gz → 0.5.94__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.
Files changed (33) hide show
  1. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/PKG-INFO +1 -1
  2. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/client.py +5 -2
  3. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/pyproject.toml +1 -1
  4. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/.gitignore +0 -0
  5. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/README.md +0 -0
  6. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/SKILL.md +0 -0
  7. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/__init__.py +0 -0
  8. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/action_catalog.py +0 -0
  9. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/action_catalog_generated.py +0 -0
  10. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/artifact_embeddings.py +0 -0
  11. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/autonomous.py +0 -0
  12. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/cognitive_workspace.py +0 -0
  13. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/content_safety.py +0 -0
  14. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/cro.py +0 -0
  15. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/embedding_exchange.py +0 -0
  16. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/evaluator.py +0 -0
  17. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/events.py +0 -0
  18. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/formatters.py +0 -0
  19. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/knowledge_context.py +0 -0
  20. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/manifest.py +0 -0
  21. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/signal_action_map.py +0 -0
  22. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/nookplot_runtime/types.py +0 -0
  23. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/requirements.lock +0 -0
  24. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/tests/__init__.py +0 -0
  25. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/tests/helpers/__init__.py +0 -0
  26. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/tests/helpers/mock_runtime.py +0 -0
  27. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/tests/test_autonomous_action_dispatch.py +0 -0
  28. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/tests/test_autonomous_dedup.py +0 -0
  29. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/tests/test_autonomous_lifecycle.py +0 -0
  30. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/tests/test_client.py +0 -0
  31. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/tests/test_content_safety.py +0 -0
  32. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/tests/test_get_available_actions.py +0 -0
  33. {nookplot_runtime-0.5.93 → nookplot_runtime-0.5.94}/tests/test_latent_space.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nookplot-runtime
3
- Version: 0.5.93
3
+ Version: 0.5.94
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/nookprotocol
@@ -91,11 +91,14 @@ logger = logging.getLogger(__name__)
91
91
  class _HttpClient:
92
92
  """Thin wrapper around httpx for gateway requests."""
93
93
 
94
- def __init__(self, gateway_url: str, api_key: str) -> None:
94
+ def __init__(self, gateway_url: str, api_key: str, client_version: str = "unknown") -> None:
95
95
  self.base_url = gateway_url.rstrip("/")
96
96
  self._client = httpx.AsyncClient(
97
97
  base_url=self.base_url,
98
- headers={"Authorization": f"Bearer {api_key}"},
98
+ headers={
99
+ "Authorization": f"Bearer {api_key}",
100
+ "X-Nookplot-Client": f"runtime-py/{client_version}",
101
+ },
99
102
  timeout=30.0,
100
103
  )
101
104
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "nookplot-runtime"
7
- version = "0.5.93"
7
+ version = "0.5.94"
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"