-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (67 loc) · 3.15 KB
/
package.json
File metadata and controls
68 lines (67 loc) · 3.15 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"private": true,
"name": "everything",
"version": "0.0.0",
"description": "Everything example",
"type": "module",
"main": "index.js",
"scripts": {
"pipe.create": "npx tsx ./pipes/pipe.create.ts",
"pipe.run.chat": "npx tsx ./pipes/pipe.run.chat.ts",
"pipe.run.stream.chat": "npx tsx ./pipes/pipe.run.stream.chat.ts",
"memory.create": "npx tsx ./memory/memory.create.ts",
"memory.list": "npx tsx ./memory/memory.list.ts",
"memory.delete": "npx tsx ./memory/memory.delete.ts",
"memory.retrieve": "npx tsx ./memory/memory.retrieve.ts",
"memory.retrieve.filters.In": "npx tsx ./memory/memory.retrieve.filters.In.ts",
"memory.retrieve.filters.NotIn": "npx tsx ./memory/memory.retrieve.filters.NotIn.ts",
"memory.retrieve.filters.Eq": "npx tsx ./memory/memory.retrieve.filters.Eq.ts",
"memory.retrieve.filters.NotEq": "npx tsx ./memory/memory.retrieve.filters.NotEq.ts",
"memory.retrieve.filters.Or": "npx tsx ./memory/memory.retrieve.filters.Or.ts",
"memory.retrieve.filters.advanced": "npx tsx ./memory/memory.retrieve.filters.advanced.ts",
"memory.docs.list": "npx tsx ./memory/memory.docs.list.ts",
"memory.docs.delete": "npx tsx ./memory/memory.docs.delete.ts",
"memory.docs.upload": "npx tsx ./memory/memory.docs.upload.ts",
"memory.docs.retry-embed": "npx tsx ./memory/memory.docs.retry-embed.ts",
"pipe.update": "npx tsx ./pipes/pipe.update.ts",
"pipe.list": "npx tsx ./pipes/pipe.list.ts",
"pipe.run": "npx tsx ./pipes/pipe.run.ts",
"pipe.tool": "npx tsx ./pipes/pipe.tool.ts",
"pipe.tool.stream": "npx tsx ./pipes/pipe.tool.stream.ts",
"pipe.run.stream": "npx tsx ./pipes/pipe.run.stream.ts",
"pipe.run.stream.llmkey": "npx tsx ./pipes/pipe.run.stream.llmkey.ts",
"pipe.structured.outputs": "npx tsx ./pipes/pipe.structured.outputs.ts",
"tools.web-search": "npx tsx ./tools/web-search.ts",
"tools.crawl": "npx tsx ./tools/crawl.ts",
"tools.crawl.firecrawl": "npx tsx ./tools/crawl.firecrawl.ts",
"embed": "npx tsx ./embed/index.ts",
"chunker": "npx tsx ./chunker/index.ts",
"parser": "npx tsx ./parser/index.ts",
"threads.create": "npx tsx ./threads/threads.create.ts",
"threads.update": "npx tsx ./threads/threads.update.ts",
"threads.delete": "npx tsx ./threads/threads.delete.ts",
"threads.append": "npx tsx ./threads/threads.append.ts",
"threads.messages.list": "npx tsx ./threads/threads.messages.list.ts",
"threads.get": "npx tsx ./threads/threads.get.ts",
"workflow": "npx tsx ./workflows/workflows.ts",
"agent.run.mcp": "npx tsx ./agent/agent.run.mcp.ts",
"images.openai": "npx tsx ./images/openai.ts",
"images.google": "npx tsx ./images/google.ts",
"images.together": "npx tsx ./images/together.ts",
"images.openrouter": "npx tsx ./images/openrouter.ts"
},
"keywords": [],
"author": "Ahmad Awais <me@AhmadAwais.com> (https://twitter.com/MrAhmadAwais)",
"license": "UNLICENSED",
"dependencies": {
"@langbase/cli": "^0.1.7",
"dotenv": "^16.4.5",
"langbase": "workspace:*",
"uuid": "^11.1.0",
"zod": "^3.21.4",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"tsx": "^4.19.1"
}
}