aimemory-core 1.0.1 → 1.0.2
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 +5 -5
- package/dist/licensing.js +1 -1
- package/package.json +3 -3
- package/src/licensing.ts +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# AI Memory
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="https://img.shields.io/npm/v/
|
|
5
|
-
<img src="https://img.shields.io/npm/dm/
|
|
6
|
-
<img src="https://img.shields.io/github/license/
|
|
7
|
-
<img src="https://img.shields.io/github/stars/
|
|
4
|
+
<img src="https://img.shields.io/npm/v/aimemory-core" alt="npm version">
|
|
5
|
+
<img src="https://img.shields.io/npm/dm/aimemory-core" alt="npm downloads">
|
|
6
|
+
<img src="https://img.shields.io/github/license/gpitrella/IA-Memory" alt="license">
|
|
7
|
+
<img src="https://img.shields.io/github/stars/gpitrella/IA-Memory" alt="stars">
|
|
8
8
|
</p>
|
|
9
9
|
|
|
10
10
|
> Persistent memory system for LLM applications with semantic search, context management, and monetization-ready infrastructure.
|
|
@@ -29,7 +29,7 @@ npm install aimemory-core
|
|
|
29
29
|
## Quick Start
|
|
30
30
|
|
|
31
31
|
```typescript
|
|
32
|
-
import { createAIMemory, EmbeddingFunction } from '
|
|
32
|
+
import { createAIMemory, EmbeddingFunction } from 'aimemory-core';
|
|
33
33
|
|
|
34
34
|
// Your embedding function (OpenAI, Cohere, etc.)
|
|
35
35
|
const embeddingFunction: EmbeddingFunction = async (text) => {
|
package/dist/licensing.js
CHANGED
|
@@ -23,7 +23,7 @@ export class LicenseManager {
|
|
|
23
23
|
valid: false,
|
|
24
24
|
plan: 'free',
|
|
25
25
|
features: PLANS.free.features,
|
|
26
|
-
error: 'API key required for production use. Get one at https://aimemory.
|
|
26
|
+
error: 'API key required for production use. Get one at https://aimemory.lat/dashboard',
|
|
27
27
|
};
|
|
28
28
|
}
|
|
29
29
|
if (config.apiKey) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aimemory-core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Persistent memory system for LLM applications - semantic search, context management, and monetization ready",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"monetization",
|
|
28
28
|
"saas"
|
|
29
29
|
],
|
|
30
|
-
"author": "Gabriel Pitrella <support@aimemory.
|
|
30
|
+
"author": "Gabriel Pitrella <support@aimemory.lat>",
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"bugs": {
|
|
37
37
|
"url": "https://github.com/gpitrella/ai-memory/issues"
|
|
38
38
|
},
|
|
39
|
-
"homepage": "https://aimemory.
|
|
39
|
+
"homepage": "https://www.aimemory.lat",
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"ioredis": "^5.10.1",
|
|
42
42
|
"pg": "^8.20.0",
|
package/src/licensing.ts
CHANGED
|
@@ -48,7 +48,7 @@ export class LicenseManager implements AIMemoryLicense {
|
|
|
48
48
|
valid: false,
|
|
49
49
|
plan: 'free',
|
|
50
50
|
features: PLANS.free.features,
|
|
51
|
-
error: 'API key required for production use. Get one at https://aimemory.
|
|
51
|
+
error: 'API key required for production use. Get one at https://aimemory.lat/dashboard',
|
|
52
52
|
};
|
|
53
53
|
}
|
|
54
54
|
|