Skip to content

Commit a82584b

Browse files
committed
🚀 RELEASE: new version
1 parent acbb8e8 commit a82584b

File tree

3 files changed

+72
-67
lines changed

3 files changed

+72
-67
lines changed

examples/nodejs/package.json

Lines changed: 65 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,67 @@
11
{
2-
"private": true,
3-
"name": "everything",
4-
"version": "0.0.0",
5-
"description": "Everything example",
6-
"type": "module",
7-
"main": "index.js",
8-
"scripts": {
9-
"pipe.create": "npx tsx ./pipes/pipe.create.ts",
10-
"pipe.run.chat": "npx tsx ./pipes/pipe.run.chat.ts",
11-
"pipe.run.stream.chat": "npx tsx ./pipes/pipe.run.stream.chat.ts",
12-
"memory.create": "npx tsx ./memory/memory.create.ts",
13-
"memory.list": "npx tsx ./memory/memory.list.ts",
14-
"memory.delete": "npx tsx ./memory/memory.delete.ts",
15-
"memory.retrieve": "npx tsx ./memory/memory.retrieve.ts",
16-
"memory.retrieve.filters.In": "npx tsx ./memory/memory.retrieve.filters.In.ts",
17-
"memory.retrieve.filters.NotIn": "npx tsx ./memory/memory.retrieve.filters.NotIn.ts",
18-
"memory.retrieve.filters.Eq": "npx tsx ./memory/memory.retrieve.filters.Eq.ts",
19-
"memory.retrieve.filters.NotEq": "npx tsx ./memory/memory.retrieve.filters.NotEq.ts",
20-
"memory.retrieve.filters.Or": "npx tsx ./memory/memory.retrieve.filters.Or.ts",
21-
"memory.retrieve.filters.advanced": "npx tsx ./memory/memory.retrieve.filters.advanced.ts",
22-
"memory.docs.list": "npx tsx ./memory/memory.docs.list.ts",
23-
"memory.docs.delete": "npx tsx ./memory/memory.docs.delete.ts",
24-
"memory.docs.upload": "npx tsx ./memory/memory.docs.upload.ts",
25-
"memory.docs.retry-embed": "npx tsx ./memory/memory.docs.retry-embed.ts",
26-
"pipe.update": "npx tsx ./pipes/pipe.update.ts",
27-
"pipe.list": "npx tsx ./pipes/pipe.list.ts",
28-
"pipe.run": "npx tsx ./pipes/pipe.run.ts",
29-
"pipe.tool": "npx tsx ./pipes/pipe.tool.ts",
30-
"pipe.tool.stream": "npx tsx ./pipes/pipe.tool.stream.ts",
31-
"pipe.run.stream": "npx tsx ./pipes/pipe.run.stream.ts",
32-
"pipe.run.stream.llmkey": "npx tsx ./pipes/pipe.run.stream.llmkey.ts",
33-
"pipe.structured.outputs": "npx tsx ./pipes/pipe.structured.outputs.ts",
34-
"tools.web-search": "npx tsx ./tools/web-search.ts",
35-
"tools.crawl": "npx tsx ./tools/crawl.ts",
36-
"tools.crawl.firecrawl": "npx tsx ./tools/crawl.firecrawl.ts",
37-
"embed": "npx tsx ./embed/index.ts",
38-
"chunker": "npx tsx ./chunker/index.ts",
39-
"parser": "npx tsx ./parser/index.ts",
40-
"threads.create": "npx tsx ./threads/threads.create.ts",
41-
"threads.update": "npx tsx ./threads/threads.update.ts",
42-
"threads.delete": "npx tsx ./threads/threads.delete.ts",
43-
"threads.append": "npx tsx ./threads/threads.append.ts",
44-
"threads.messages.list": "npx tsx ./threads/threads.messages.list.ts",
45-
"threads.get": "npx tsx ./threads/threads.get.ts",
46-
"workflow": "npx tsx ./workflows/workflows.ts",
47-
"agent.run.mcp": "npx tsx ./agent/agent.run.mcp.ts",
48-
"images.openai": "npx tsx ./images/openai.ts",
49-
"images.google": "npx tsx ./images/google.ts",
50-
"images.together": "npx tsx ./images/together.ts",
51-
"images.openrouter": "npx tsx ./images/openrouter.ts"
52-
53-
},
54-
"keywords": [],
55-
"author": "Ahmad Awais <[email protected]> (https://twitter.com/MrAhmadAwais)",
56-
"license": "UNLICENSED",
57-
"dependencies": {
58-
"@langbase/cli": "^0.1.7",
59-
"dotenv": "^16.4.5",
60-
"langbase": "workspace:*",
61-
"uuid": "^11.1.0",
62-
"zod": "^3.21.4",
63-
"zod-to-json-schema": "^3.24.5"
64-
},
65-
"devDependencies": {
66-
"tsx": "^4.19.1"
67-
}
2+
"private": true,
3+
"name": "everything",
4+
"version": "0.0.0",
5+
"description": "Everything example",
6+
"type": "module",
7+
"main": "index.js",
8+
"scripts": {
9+
"pipe.create": "npx tsx ./pipes/pipe.create.ts",
10+
"pipe.run.chat": "npx tsx ./pipes/pipe.run.chat.ts",
11+
"pipe.run.stream.chat": "npx tsx ./pipes/pipe.run.stream.chat.ts",
12+
"memory.create": "npx tsx ./memory/memory.create.ts",
13+
"memory.list": "npx tsx ./memory/memory.list.ts",
14+
"memory.delete": "npx tsx ./memory/memory.delete.ts",
15+
"memory.retrieve": "npx tsx ./memory/memory.retrieve.ts",
16+
"memory.retrieve.filters.In": "npx tsx ./memory/memory.retrieve.filters.In.ts",
17+
"memory.retrieve.filters.NotIn": "npx tsx ./memory/memory.retrieve.filters.NotIn.ts",
18+
"memory.retrieve.filters.Eq": "npx tsx ./memory/memory.retrieve.filters.Eq.ts",
19+
"memory.retrieve.filters.NotEq": "npx tsx ./memory/memory.retrieve.filters.NotEq.ts",
20+
"memory.retrieve.filters.Or": "npx tsx ./memory/memory.retrieve.filters.Or.ts",
21+
"memory.retrieve.filters.advanced": "npx tsx ./memory/memory.retrieve.filters.advanced.ts",
22+
"memory.docs.list": "npx tsx ./memory/memory.docs.list.ts",
23+
"memory.docs.delete": "npx tsx ./memory/memory.docs.delete.ts",
24+
"memory.docs.upload": "npx tsx ./memory/memory.docs.upload.ts",
25+
"memory.docs.retry-embed": "npx tsx ./memory/memory.docs.retry-embed.ts",
26+
"pipe.update": "npx tsx ./pipes/pipe.update.ts",
27+
"pipe.list": "npx tsx ./pipes/pipe.list.ts",
28+
"pipe.run": "npx tsx ./pipes/pipe.run.ts",
29+
"pipe.tool": "npx tsx ./pipes/pipe.tool.ts",
30+
"pipe.tool.stream": "npx tsx ./pipes/pipe.tool.stream.ts",
31+
"pipe.run.stream": "npx tsx ./pipes/pipe.run.stream.ts",
32+
"pipe.run.stream.llmkey": "npx tsx ./pipes/pipe.run.stream.llmkey.ts",
33+
"pipe.structured.outputs": "npx tsx ./pipes/pipe.structured.outputs.ts",
34+
"tools.web-search": "npx tsx ./tools/web-search.ts",
35+
"tools.crawl": "npx tsx ./tools/crawl.ts",
36+
"tools.crawl.firecrawl": "npx tsx ./tools/crawl.firecrawl.ts",
37+
"embed": "npx tsx ./embed/index.ts",
38+
"chunker": "npx tsx ./chunker/index.ts",
39+
"parser": "npx tsx ./parser/index.ts",
40+
"threads.create": "npx tsx ./threads/threads.create.ts",
41+
"threads.update": "npx tsx ./threads/threads.update.ts",
42+
"threads.delete": "npx tsx ./threads/threads.delete.ts",
43+
"threads.append": "npx tsx ./threads/threads.append.ts",
44+
"threads.messages.list": "npx tsx ./threads/threads.messages.list.ts",
45+
"threads.get": "npx tsx ./threads/threads.get.ts",
46+
"workflow": "npx tsx ./workflows/workflows.ts",
47+
"agent.run.mcp": "npx tsx ./agent/agent.run.mcp.ts",
48+
"images.openai": "npx tsx ./images/openai.ts",
49+
"images.google": "npx tsx ./images/google.ts",
50+
"images.together": "npx tsx ./images/together.ts",
51+
"images.openrouter": "npx tsx ./images/openrouter.ts"
52+
},
53+
"keywords": [],
54+
"author": "Ahmad Awais <[email protected]> (https://twitter.com/MrAhmadAwais)",
55+
"license": "UNLICENSED",
56+
"dependencies": {
57+
"@langbase/cli": "^0.1.7",
58+
"dotenv": "^16.4.5",
59+
"langbase": "1.2.4",
60+
"uuid": "^11.1.0",
61+
"zod": "^3.21.4",
62+
"zod-to-json-schema": "^3.24.5"
63+
},
64+
"devDependencies": {
65+
"tsx": "^4.19.1"
66+
}
6867
}

packages/langbase/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# `langbase` SDK
22

3+
## 1.2.4
4+
5+
### Patch Changes
6+
7+
- Added image generation
8+
39
## 1.2.3
410

511
### Patch Changes

packages/langbase/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "langbase",
3-
"version": "1.2.3",
3+
"version": "1.2.4",
44
"license": "Apache-2.0",
55
"sideEffects": false,
66
"main": "./dist/index.js",

0 commit comments

Comments
 (0)