forked from supermemoryai/memorybench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 2.03 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "memorybench",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"test": "bun test",
"bench": "bun run src/index.ts run",
"bench:graphlit": "bun run src/index.ts run -p graphlit",
"bench:graphlit:locomo": "bun run src/index.ts run -p graphlit -b locomo",
"bench:graphlit:longmemeval": "bun run src/index.ts run -p graphlit -b longmemeval",
"bench:graphlit:convomem": "bun run src/index.ts run -p graphlit -b convomem",
"bench:graphlit:quick": "bun run src/index.ts run -p graphlit -b locomo -l 5",
"bench:graphlit:small": "bun run src/index.ts run -p graphlit -b locomo -l 50 -j gpt-4.1",
"bench:graphlit:medium": "bun run src/index.ts run -p graphlit -b locomo -l 200 -j gpt-4.1",
"compare": "bun run src/index.ts compare",
"compare:locomo": "bun run src/index.ts compare -p graphlit,supermemory,mem0,zep -b locomo",
"compare:longmemeval": "bun run src/index.ts compare -p graphlit,supermemory,mem0,zep -b longmemeval",
"compare:convomem": "bun run src/index.ts compare -p graphlit,supermemory,mem0,zep -b convomem",
"compare:quick": "bun run src/index.ts compare -p graphlit,supermemory,mem0,zep -b locomo -l 10",
"compare:small": "bun run src/index.ts compare -p graphlit,supermemory,mem0,zep -b locomo -l 50",
"compare:medium": "bun run src/index.ts compare -p graphlit,supermemory,mem0,zep -b locomo -l 200",
"status": "bun run src/index.ts status",
"failures": "bun run src/index.ts show-failures",
"cleanup": "bun run src/index.ts cleanup",
"serve": "bun run src/index.ts serve",
"help": "bun run src/index.ts help"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.56",
"@ai-sdk/google": "^2.0.49",
"@ai-sdk/openai": "^2.0.88",
"@getzep/zep-cloud": "^3.13.0",
"ai": "^5.0.115",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"graphlit-client": "^1.0.20251224001",
"mem0ai": "^2.1.38",
"supermemory": "^4.0.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/bun": "^1.2.14"
}
}