@pyxmate/memory 0.0.4-beta → 0.0.5-beta

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 (2) hide show
  1. package/README.md +5 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  SDK for **pyx-memory** — Memory as a Service for AI agents.
4
4
 
5
- Provides an HTTP client, shared types, and optional dashboard + React hooks for interacting with a pyx-memory server.
5
+ Provides an HTTP client, shared types, and optional dashboard + React hooks for interacting with the pyx-memory managed cloud.
6
6
 
7
7
  ## Install
8
8
 
@@ -16,7 +16,7 @@ npm install @pyxmate/memory
16
16
  import { MemoryClient } from '@pyxmate/memory';
17
17
  import type { MemoryEntry } from '@pyxmate/memory';
18
18
 
19
- const client = new MemoryClient('http://localhost:7822');
19
+ const client = new MemoryClient('https://your-pyx-memory-endpoint');
20
20
  await client.initialize();
21
21
 
22
22
  // Store a memory
@@ -25,7 +25,7 @@ await client.store({
25
25
  agentId: 'my-agent',
26
26
  });
27
27
 
28
- // Search memories
28
+ // Search memories — smart retrieval picks the best strategy
29
29
  const results = await client.search({ query: 'deadline', limit: 5 });
30
30
  ```
31
31
 
@@ -37,12 +37,9 @@ const results = await client.search({ query: 'deadline', limit: 5 });
37
37
  | `@pyxmate/memory/dashboard` | Headless dashboard utilities — `DashboardClient`, aggregations, graph transforms (no React) |
38
38
  | `@pyxmate/memory/react` | React hooks — `useMemoryStats`, `useMemoryHealth`, `useKnowledgeGraph`, etc. (requires React >= 18) |
39
39
 
40
- ## Running the Server
40
+ ## Managed Cloud
41
41
 
42
- ```bash
43
- docker pull ghcr.io/fysoul17/pyx-memory:latest
44
- docker run -p 7822:7822 ghcr.io/fysoul17/pyx-memory:latest
45
- ```
42
+ pyx-memory is deployed exclusively as a managed cloud service at **[memory.pyxmate.com](https://memory.pyxmate.com)**.
46
43
 
47
44
  ## Requirements
48
45
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pyxmate/memory",
3
- "version": "0.0.4-beta",
3
+ "version": "0.0.5-beta",
4
4
  "type": "module",
5
5
  "description": "SDK for pyx-memory — Memory as a Service for AI agents",
6
6
  "license": "MIT",