@memorylayerai/sdk 0.1.0 → 0.1.1
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.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @memorylayerai/sdk
|
|
2
2
|
|
|
3
3
|
Official Node.js/TypeScript SDK for MemoryLayer - Add memory capabilities to your AI applications.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install @
|
|
8
|
+
npm install @memorylayerai/sdk
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Quick Start
|
|
12
12
|
|
|
13
13
|
```typescript
|
|
14
|
-
import { MemoryLayerClient } from '@
|
|
14
|
+
import { MemoryLayerClient } from '@memorylayerai/sdk';
|
|
15
15
|
|
|
16
16
|
const client = new MemoryLayerClient({
|
|
17
17
|
apiKey: process.env.MEMORYLAYER_API_KEY!,
|