@dakera-ai/dakera 0.11.90 → 0.11.91

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 +8 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -69,6 +69,14 @@ Works with **Node.js** (20+), **Deno**, **Bun**, **Cloudflare Workers**, and mod
69
69
 
70
70
  ## Quick Start
71
71
 
72
+ ```typescript
73
+ import { DakeraClient } from '@dakera-ai/dakera';
74
+ const client = new DakeraClient({ baseUrl: 'http://localhost:3000', apiKey: 'dk-mykey' });
75
+ await client.storeMemory('my-agent', { content: 'User prefers brevity', importance: 0.9 });
76
+ ```
77
+
78
+ Full example — store, recall, upsert, and hybrid search:
79
+
72
80
  ```typescript
73
81
  import { DakeraClient } from '@dakera-ai/dakera';
74
82
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dakera-ai/dakera",
3
- "version": "0.11.90",
3
+ "version": "0.11.91",
4
4
  "description": "TypeScript/JavaScript SDK for Dakera AI memory platform",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -66,6 +66,7 @@
66
66
  },
67
67
  "overrides": {
68
68
  "vite": ">=8.0.5",
69
- "postcss": ">=8.5.10"
69
+ "postcss": ">=8.5.10",
70
+ "esbuild": ">=0.28.1"
70
71
  }
71
72
  }