@langgraph-js/pure-graph 1.2.0 → 1.4.0

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.
Files changed (79) hide show
  1. package/README.md +22 -14
  2. package/dist/adapter/hono/runs.js +18 -1
  3. package/dist/adapter/nextjs/router.js +18 -7
  4. package/dist/adapter/zod.d.ts +15 -8
  5. package/dist/adapter/zod.js +8 -0
  6. package/dist/global.d.ts +3 -2
  7. package/dist/storage/index.d.ts +4 -3
  8. package/dist/storage/index.js +13 -1
  9. package/dist/storage/memory/threads.d.ts +3 -2
  10. package/dist/storage/memory/threads.js +29 -2
  11. package/dist/storage/pg/checkpoint.d.ts +2 -0
  12. package/dist/storage/pg/checkpoint.js +9 -0
  13. package/dist/storage/pg/threads.d.ts +43 -0
  14. package/dist/storage/pg/threads.js +304 -0
  15. package/dist/storage/sqlite/threads.d.ts +3 -2
  16. package/dist/storage/sqlite/threads.js +37 -3
  17. package/dist/threads/index.d.ts +3 -2
  18. package/dist/threads/index.js +1 -26
  19. package/dist/tsconfig.tsbuildinfo +1 -0
  20. package/dist/types.d.ts +2 -1
  21. package/package.json +38 -5
  22. package/.prettierrc +0 -11
  23. package/bun.lock +0 -209
  24. package/dist/adapter/nextjs/zod.d.ts +0 -203
  25. package/dist/adapter/nextjs/zod.js +0 -60
  26. package/examples/nextjs/README.md +0 -36
  27. package/examples/nextjs/app/api/langgraph/[...path]/route.ts +0 -10
  28. package/examples/nextjs/app/favicon.ico +0 -0
  29. package/examples/nextjs/app/globals.css +0 -26
  30. package/examples/nextjs/app/layout.tsx +0 -34
  31. package/examples/nextjs/app/page.tsx +0 -211
  32. package/examples/nextjs/next.config.ts +0 -26
  33. package/examples/nextjs/package.json +0 -24
  34. package/examples/nextjs/postcss.config.mjs +0 -5
  35. package/examples/nextjs/tsconfig.json +0 -27
  36. package/packages/agent-graph/demo.json +0 -35
  37. package/packages/agent-graph/package.json +0 -18
  38. package/packages/agent-graph/src/index.ts +0 -47
  39. package/packages/agent-graph/src/tools/tavily.ts +0 -9
  40. package/packages/agent-graph/src/tools.ts +0 -38
  41. package/packages/agent-graph/src/types.ts +0 -42
  42. package/pnpm-workspace.yaml +0 -4
  43. package/src/adapter/hono/assistants.ts +0 -24
  44. package/src/adapter/hono/endpoint.ts +0 -3
  45. package/src/adapter/hono/index.ts +0 -14
  46. package/src/adapter/hono/runs.ts +0 -65
  47. package/src/adapter/hono/threads.ts +0 -37
  48. package/src/adapter/nextjs/endpoint.ts +0 -2
  49. package/src/adapter/nextjs/index.ts +0 -2
  50. package/src/adapter/nextjs/router.ts +0 -193
  51. package/src/adapter/nextjs/zod.ts +0 -66
  52. package/src/adapter/zod.ts +0 -135
  53. package/src/createEndpoint.ts +0 -116
  54. package/src/e.d.ts +0 -3
  55. package/src/global.ts +0 -11
  56. package/src/graph/stream.ts +0 -263
  57. package/src/graph/stringify.ts +0 -219
  58. package/src/index.ts +0 -6
  59. package/src/queue/JsonPlusSerializer.ts +0 -143
  60. package/src/queue/event_message.ts +0 -30
  61. package/src/queue/stream_queue.ts +0 -237
  62. package/src/storage/index.ts +0 -52
  63. package/src/storage/memory/checkpoint.ts +0 -2
  64. package/src/storage/memory/queue.ts +0 -91
  65. package/src/storage/memory/threads.ts +0 -154
  66. package/src/storage/redis/queue.ts +0 -148
  67. package/src/storage/sqlite/DB.ts +0 -16
  68. package/src/storage/sqlite/checkpoint.ts +0 -503
  69. package/src/storage/sqlite/threads.ts +0 -366
  70. package/src/storage/sqlite/type.ts +0 -12
  71. package/src/threads/index.ts +0 -51
  72. package/src/types.ts +0 -116
  73. package/src/utils/createEntrypointGraph.ts +0 -20
  74. package/src/utils/getGraph.ts +0 -44
  75. package/src/utils/getLangGraphCommand.ts +0 -21
  76. package/test/graph/entrypoint.ts +0 -21
  77. package/test/graph/index.ts +0 -60
  78. package/test/hono.ts +0 -15
  79. package/tsconfig.json +0 -20
package/dist/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Thread, Assistant, Run, StreamMode, Command, Metadata, AssistantGraph, OnConflictBehavior, ThreadStatus, Checkpoint } from '@langchain/langgraph-sdk';
1
+ import { Thread, Assistant, Run, StreamMode, Command, Metadata, AssistantGraph, OnConflictBehavior, ThreadStatus, Checkpoint, Config } from '@langchain/langgraph-sdk';
2
2
  import { StreamEvent } from '@langchain/core/tracers/log_stream';
3
3
  import { EventMessage } from './queue/event_message';
4
4
  import { RunnableConfig } from '@langchain/core/runnables';
@@ -71,6 +71,7 @@ export interface ILangGraphClient<TStateType = unknown> {
71
71
  }): Promise<Thread<TStateType>[]>;
72
72
  get(threadId: string): Promise<Thread<TStateType>>;
73
73
  delete(threadId: string): Promise<void>;
74
+ updateState(threadId: string, thread: Partial<Thread<TStateType>>): Promise<Pick<Config, 'configurable'>>;
74
75
  };
75
76
  runs: {
76
77
  list(threadId: string, options?: {
package/package.json CHANGED
@@ -1,10 +1,40 @@
1
1
  {
2
2
  "name": "@langgraph-js/pure-graph",
3
- "version": "1.2.0",
4
- "description": "",
3
+ "version": "1.4.0",
4
+ "description": "A library that provides a standard LangGraph endpoint for integrating into various frameworks like Next.js and Hono.js, with support for multiple storage backends (SQLite, PostgreSQL, Redis) and message queues.",
5
5
  "main": "dist/index.js",
6
- "keywords": [],
7
- "author": "",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist",
9
+ "README.md",
10
+ "LICENSE"
11
+ ],
12
+ "keywords": [
13
+ "langgraph",
14
+ "langchain",
15
+ "nextjs",
16
+ "hono",
17
+ "framework",
18
+ "api",
19
+ "endpoint",
20
+ "storage",
21
+ "sqlite",
22
+ "postgres",
23
+ "redis",
24
+ "typescript"
25
+ ],
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "https://github.com/KonghaYao/pure-graph.git"
29
+ },
30
+ "homepage": "https://github.com/KonghaYao/pure-graph",
31
+ "bugs": {
32
+ "url": "https://github.com/KonghaYao/pure-graph/issues"
33
+ },
34
+ "engines": {
35
+ "node": ">=18.0.0"
36
+ },
37
+ "author": "KonghaYao<3446798488@qq.com>",
8
38
  "license": "MIT",
9
39
  "dependencies": {
10
40
  "@langchain/core": "^0.3.78",
@@ -18,15 +48,18 @@
18
48
  },
19
49
  "optionalDependencies": {
20
50
  "@hono/zod-validator": "^0.7.3",
51
+ "@langchain/langgraph-checkpoint-postgres": "^0.1.2",
52
+ "@langchain/langgraph-checkpoint-redis": "^0.0.2",
21
53
  "hono": "^4.9.9",
54
+ "pg": "^8.16.3",
22
55
  "redis": "^5.8.3"
23
56
  },
24
57
  "devDependencies": {
25
- "@langchain/langgraph-checkpoint-redis": "^0.0.2",
26
58
  "@langchain/langgraph-sdk": "^0.1.7",
27
59
  "@langchain/openai": "^0.6.14",
28
60
  "@langgraph-js/sdk": "^2.0.1",
29
61
  "@types/node": "^22.13.5",
62
+ "@types/pg": "^8.15.5",
30
63
  "typescript": "^5.9.2"
31
64
  },
32
65
  "scripts": {
package/.prettierrc DELETED
@@ -1,11 +0,0 @@
1
- {
2
- "printWidth": 120,
3
- "tabWidth": 4,
4
- "useTabs": false,
5
- "singleQuote": true,
6
- "trailingComma": "all",
7
- "semi": true,
8
- "bracketSpacing": true,
9
- "bracketSameLine": false,
10
- "arrowParens": "always"
11
- }
package/bun.lock DELETED
@@ -1,209 +0,0 @@
1
- {
2
- "lockfileVersion": 1,
3
- "workspaces": {
4
- "": {
5
- "name": "@langgraph-js/pure-graph",
6
- "dependencies": {
7
- "@langchain/core": "^0.3.77",
8
- "@langchain/langgraph": "^0.4.9",
9
- "@langchain/langgraph-checkpoint": "^0.1.1",
10
- "@langchain/langgraph-checkpoint-sqlite": "^0.2.1",
11
- "@langgraph-js/pro": "^1.8.1",
12
- "better-sqlite3": "^12.4.1",
13
- "eventemitter3": "^5.0.1",
14
- "zod": "^3",
15
- },
16
- "devDependencies": {
17
- "@langchain/langgraph-sdk": "^0.1.7",
18
- "@langgraph-js/sdk": "^2.0.1",
19
- "@types/node": "^22.13.5",
20
- "typescript": "^5.9.2",
21
- },
22
- "optionalDependencies": {
23
- "@hono/zod-validator": "^0.7.3",
24
- "hono": "^4.9.9",
25
- },
26
- },
27
- },
28
- "packages": {
29
- "@cfworker/json-schema": ["@cfworker/json-schema@4.1.1", "https://registry.npmmirror.com/@cfworker/json-schema/-/json-schema-4.1.1.tgz", {}, "sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og=="],
30
-
31
- "@hono/zod-validator": ["@hono/zod-validator@0.7.3", "https://registry.npmmirror.com/@hono/zod-validator/-/zod-validator-0.7.3.tgz", { "peerDependencies": { "hono": "4.9.9", "zod": "3.25.76" } }, "sha512-uYGdgVib3RlGD698WR5dVM0zB3UuPY5vHKXffGUbUh7r4xY+mFIhF3/v4AcQVLrU5CQdBso8BJr4wuVoCrjTuQ=="],
32
-
33
- "@langchain/core": ["@langchain/core@0.3.77", "https://registry.npmmirror.com/@langchain/core/-/core-0.3.77.tgz", { "dependencies": { "@cfworker/json-schema": "4.1.1", "ansi-styles": "5.2.0", "camelcase": "6.3.0", "decamelize": "1.2.0", "js-tiktoken": "1.0.21", "langsmith": "0.3.69", "mustache": "4.2.0", "p-queue": "6.6.2", "p-retry": "4.6.2", "uuid": "10.0.0", "zod": "3.25.76", "zod-to-json-schema": "3.24.6" } }, "sha512-aqXHea9xfpVn6VoCq9pjujwFqrh3vw3Fgm9KFUZJ1cF7Bx5HI62DvQPw8LlRB3NB4dhwBBA1ldAVkkkd1du8nA=="],
34
-
35
- "@langchain/langgraph": ["@langchain/langgraph@0.4.9", "https://registry.npmmirror.com/@langchain/langgraph/-/langgraph-0.4.9.tgz", { "dependencies": { "@langchain/langgraph-checkpoint": "0.1.1", "@langchain/langgraph-sdk": "0.1.7", "uuid": "10.0.0", "zod": "3.25.76" }, "optionalDependencies": { "zod-to-json-schema": "3.24.6" }, "peerDependencies": { "@langchain/core": "0.3.77" } }, "sha512-+rcdTGi4Ium4X/VtIX3Zw4RhxEkYWpwUyz806V6rffjHOAMamg6/WZDxpJbrP33RV/wJG1GH12Z29oX3Pqq3Aw=="],
36
-
37
- "@langchain/langgraph-checkpoint": ["@langchain/langgraph-checkpoint@0.1.1", "https://registry.npmmirror.com/@langchain/langgraph-checkpoint/-/langgraph-checkpoint-0.1.1.tgz", { "dependencies": { "uuid": "10.0.0" }, "peerDependencies": { "@langchain/core": "0.3.77" } }, "sha512-h2bP0RUikQZu0Um1ZUPErQLXyhzroJqKRbRcxYRTAh49oNlsfeq4A3K4YEDRbGGuyPZI/Jiqwhks1wZwY73AZw=="],
38
-
39
- "@langchain/langgraph-checkpoint-sqlite": ["@langchain/langgraph-checkpoint-sqlite@0.2.1", "https://registry.npmmirror.com/@langchain/langgraph-checkpoint-sqlite/-/langgraph-checkpoint-sqlite-0.2.1.tgz", { "dependencies": { "better-sqlite3": "^11.7.0" }, "peerDependencies": { "@langchain/core": ">=0.2.31 <0.4.0 || ^1.0.0-alpha", "@langchain/langgraph-checkpoint": "^0.1.0" } }, "sha512-zDY1Jv5QA5rQVm0jPBan6XnhkB4oFdhPQH1Huu81B3YPOJaJqjJZVR4/YewzX93gWaSSji5L8YPZ7198tXjNeQ=="],
40
-
41
- "@langchain/langgraph-sdk": ["@langchain/langgraph-sdk@0.1.7", "https://registry.npmmirror.com/@langchain/langgraph-sdk/-/langgraph-sdk-0.1.7.tgz", { "dependencies": { "@types/json-schema": "7.0.15", "p-queue": "6.6.2", "p-retry": "4.6.2", "uuid": "9.0.1" }, "optionalDependencies": { "@langchain/core": "0.3.77" } }, "sha512-VVQpJQPrzlCLjDqz38dD9qBvG+5bbojoGgP5YMCJKY0RPolw+JE7I/o8cIjAxgvf0NH6U1cfbNJIF2L/0Cfq5Q=="],
42
-
43
- "@langchain/langgraph-swarm": ["@langchain/langgraph-swarm@0.0.5", "https://registry.npmmirror.com/@langchain/langgraph-swarm/-/langgraph-swarm-0.0.5.tgz", { "dependencies": { "zod": "3.25.76" }, "peerDependencies": { "@langchain/core": "0.3.77", "@langchain/langgraph": "0.4.9" } }, "sha512-/4fSH1l21WHtdIqEYlwkV4gfRn+8+8BtBU0Y7hiMR0yAdXqLVapK0jeMOM2cAVMO57BRkZhDWft+IObOJ/H6JQ=="],
44
-
45
- "@langchain/openai": ["@langchain/openai@0.5.18", "https://registry.npmmirror.com/@langchain/openai/-/openai-0.5.18.tgz", { "dependencies": { "js-tiktoken": "1.0.21", "openai": "5.23.1", "zod": "3.25.76" }, "peerDependencies": { "@langchain/core": "0.3.77" } }, "sha512-CX1kOTbT5xVFNdtLjnM0GIYNf+P7oMSu+dGCFxxWRa3dZwWiuyuBXCm+dToUGxDLnsHuV1bKBtIzrY1mLq/A1Q=="],
46
-
47
- "@langgraph-js/pro": ["@langgraph-js/pro@1.8.1", "https://registry.npmmirror.com/@langgraph-js/pro/-/pro-1.8.1.tgz", { "dependencies": { "@langchain/core": "0.3.77", "@langchain/langgraph": "0.4.9", "@langchain/langgraph-swarm": "0.0.5", "@langchain/openai": "0.5.18", "zod": "3.25.76" } }, "sha512-+Cgu2J/0IrkLwAn2fIRhbRbs+KaoM+4zsJCkk9OZIEIFW4Qsz7+sYFKNCBPrviXUOrNuj61z5G66uptNS37PkQ=="],
48
-
49
- "@langgraph-js/sdk": ["@langgraph-js/sdk@2.0.1", "https://registry.npmmirror.com/@langgraph-js/sdk/-/sdk-2.0.1.tgz", { "dependencies": { "@langchain/langgraph-sdk": "0.0.77", "eventemitter3": "5.0.1", "jsonrepair": "3.13.1", "nanostores": "1.0.1", "ts-debounce": "4.0.0", "zod": "3.25.76", "zod-to-json-schema": "3.24.6" } }, "sha512-MgX1KkgC1/chMpeXtrd2vzreEOMUWyaE4wr2NbLu4BsQJpW1flTRQ5pGha3i43nbP2WJytx00JtT97G5eYWthw=="],
50
-
51
- "@types/json-schema": ["@types/json-schema@7.0.15", "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.15.tgz", {}, "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="],
52
-
53
- "@types/node": ["@types/node@22.18.6", "https://registry.npmmirror.com/@types/node/-/node-22.18.6.tgz", { "dependencies": { "undici-types": "6.21.0" } }, "sha512-r8uszLPpeIWbNKtvWRt/DbVi5zbqZyj1PTmhRMqBMvDnaz1QpmSKujUtJLrqGZeoM8v72MfYggDceY4K1itzWQ=="],
54
-
55
- "@types/retry": ["@types/retry@0.12.0", "https://registry.npmmirror.com/@types/retry/-/retry-0.12.0.tgz", {}, "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA=="],
56
-
57
- "@types/uuid": ["@types/uuid@10.0.0", "https://registry.npmmirror.com/@types/uuid/-/uuid-10.0.0.tgz", {}, "sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ=="],
58
-
59
- "ansi-styles": ["ansi-styles@5.2.0", "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-5.2.0.tgz", {}, "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="],
60
-
61
- "base64-js": ["base64-js@1.5.1", "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz", {}, "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="],
62
-
63
- "better-sqlite3": ["better-sqlite3@12.4.1", "https://registry.npmmirror.com/better-sqlite3/-/better-sqlite3-12.4.1.tgz", { "dependencies": { "bindings": "^1.5.0", "prebuild-install": "^7.1.1" } }, "sha512-3yVdyZhklTiNrtg+4WqHpJpFDd+WHTg2oM7UcR80GqL05AOV0xEJzc6qNvFYoEtE+hRp1n9MpN6/+4yhlGkDXQ=="],
64
-
65
- "bindings": ["bindings@1.5.0", "https://registry.npmmirror.com/bindings/-/bindings-1.5.0.tgz", { "dependencies": { "file-uri-to-path": "1.0.0" } }, "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="],
66
-
67
- "bl": ["bl@4.1.0", "https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz", { "dependencies": { "buffer": "^5.5.0", "inherits": "^2.0.4", "readable-stream": "^3.4.0" } }, "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="],
68
-
69
- "buffer": ["buffer@5.7.1", "https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz", { "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" } }, "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="],
70
-
71
- "camelcase": ["camelcase@6.3.0", "https://registry.npmmirror.com/camelcase/-/camelcase-6.3.0.tgz", {}, "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="],
72
-
73
- "chalk": ["chalk@4.1.2", "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz", { "dependencies": { "ansi-styles": "4.3.0", "supports-color": "7.2.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
74
-
75
- "chownr": ["chownr@1.1.4", "https://registry.npmmirror.com/chownr/-/chownr-1.1.4.tgz", {}, "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="],
76
-
77
- "color-convert": ["color-convert@2.0.1", "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", { "dependencies": { "color-name": "1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="],
78
-
79
- "color-name": ["color-name@1.1.4", "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="],
80
-
81
- "console-table-printer": ["console-table-printer@2.14.6", "https://registry.npmmirror.com/console-table-printer/-/console-table-printer-2.14.6.tgz", { "dependencies": { "simple-wcswidth": "1.1.2" } }, "sha512-MCBl5HNVaFuuHW6FGbL/4fB7N/ormCy+tQ+sxTrF6QtSbSNETvPuOVbkJBhzDgYhvjWGrTma4eYJa37ZuoQsPw=="],
82
-
83
- "decamelize": ["decamelize@1.2.0", "https://registry.npmmirror.com/decamelize/-/decamelize-1.2.0.tgz", {}, "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA=="],
84
-
85
- "decompress-response": ["decompress-response@6.0.0", "https://registry.npmmirror.com/decompress-response/-/decompress-response-6.0.0.tgz", { "dependencies": { "mimic-response": "^3.1.0" } }, "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ=="],
86
-
87
- "deep-extend": ["deep-extend@0.6.0", "https://registry.npmmirror.com/deep-extend/-/deep-extend-0.6.0.tgz", {}, "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="],
88
-
89
- "detect-libc": ["detect-libc@2.1.1", "https://registry.npmmirror.com/detect-libc/-/detect-libc-2.1.1.tgz", {}, "sha512-ecqj/sy1jcK1uWrwpR67UhYrIFQ+5WlGxth34WquCbamhFA6hkkwiu37o6J5xCHdo1oixJRfVRw+ywV+Hq/0Aw=="],
90
-
91
- "end-of-stream": ["end-of-stream@1.4.5", "https://registry.npmmirror.com/end-of-stream/-/end-of-stream-1.4.5.tgz", { "dependencies": { "once": "^1.4.0" } }, "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg=="],
92
-
93
- "eventemitter3": ["eventemitter3@5.0.1", "https://registry.npmmirror.com/eventemitter3/-/eventemitter3-5.0.1.tgz", {}, "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA=="],
94
-
95
- "expand-template": ["expand-template@2.0.3", "https://registry.npmmirror.com/expand-template/-/expand-template-2.0.3.tgz", {}, "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg=="],
96
-
97
- "file-uri-to-path": ["file-uri-to-path@1.0.0", "https://registry.npmmirror.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", {}, "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw=="],
98
-
99
- "fs-constants": ["fs-constants@1.0.0", "https://registry.npmmirror.com/fs-constants/-/fs-constants-1.0.0.tgz", {}, "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="],
100
-
101
- "github-from-package": ["github-from-package@0.0.0", "https://registry.npmmirror.com/github-from-package/-/github-from-package-0.0.0.tgz", {}, "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw=="],
102
-
103
- "has-flag": ["has-flag@4.0.0", "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz", {}, "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="],
104
-
105
- "hono": ["hono@4.9.9", "https://registry.npmmirror.com/hono/-/hono-4.9.9.tgz", {}, "sha512-Hxw4wT6zjJGZJdkJzAx9PyBdf7ZpxaTSA0NfxqjLghwMrLBX8p33hJBzoETRakF3UJu6OdNQBZAlNSkGqKFukw=="],
106
-
107
- "ieee754": ["ieee754@1.2.1", "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz", {}, "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="],
108
-
109
- "inherits": ["inherits@2.0.4", "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz", {}, "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="],
110
-
111
- "ini": ["ini@1.3.8", "https://registry.npmmirror.com/ini/-/ini-1.3.8.tgz", {}, "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="],
112
-
113
- "js-tiktoken": ["js-tiktoken@1.0.21", "https://registry.npmmirror.com/js-tiktoken/-/js-tiktoken-1.0.21.tgz", { "dependencies": { "base64-js": "1.5.1" } }, "sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g=="],
114
-
115
- "jsonrepair": ["jsonrepair@3.13.1", "https://registry.npmmirror.com/jsonrepair/-/jsonrepair-3.13.1.tgz", { "bin": { "jsonrepair": "bin/cli.js" } }, "sha512-WJeiE0jGfxYmtLwBTEk8+y/mYcaleyLXWaqp5bJu0/ZTSeG0KQq/wWQ8pmnkKenEdN6pdnn6QtcoSUkbqDHWNw=="],
116
-
117
- "langsmith": ["langsmith@0.3.69", "https://registry.npmmirror.com/langsmith/-/langsmith-0.3.69.tgz", { "dependencies": { "@types/uuid": "10.0.0", "chalk": "4.1.2", "console-table-printer": "2.14.6", "p-queue": "6.6.2", "p-retry": "4.6.2", "semver": "7.7.2", "uuid": "10.0.0" }, "optionalDependencies": { "openai": "5.23.1" } }, "sha512-YKzu92YAP2o+d+1VmR38xqFX0RIRLKYj1IqdflVEY83X0FoiVlrWO3xDLXgnu7vhZ2N2M6jx8VO9fVF8yy9gHA=="],
118
-
119
- "mimic-response": ["mimic-response@3.1.0", "https://registry.npmmirror.com/mimic-response/-/mimic-response-3.1.0.tgz", {}, "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="],
120
-
121
- "minimist": ["minimist@1.2.8", "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz", {}, "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="],
122
-
123
- "mkdirp-classic": ["mkdirp-classic@0.5.3", "https://registry.npmmirror.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", {}, "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="],
124
-
125
- "mustache": ["mustache@4.2.0", "https://registry.npmmirror.com/mustache/-/mustache-4.2.0.tgz", { "bin": { "mustache": "bin/mustache" } }, "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ=="],
126
-
127
- "nanostores": ["nanostores@1.0.1", "https://registry.npmmirror.com/nanostores/-/nanostores-1.0.1.tgz", {}, "sha512-kNZ9xnoJYKg/AfxjrVL4SS0fKX++4awQReGqWnwTRHxeHGZ1FJFVgTqr/eMrNQdp0Tz7M7tG/TDaX8QfHDwVCw=="],
128
-
129
- "napi-build-utils": ["napi-build-utils@2.0.0", "https://registry.npmmirror.com/napi-build-utils/-/napi-build-utils-2.0.0.tgz", {}, "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA=="],
130
-
131
- "node-abi": ["node-abi@3.77.0", "https://registry.npmmirror.com/node-abi/-/node-abi-3.77.0.tgz", { "dependencies": { "semver": "^7.3.5" } }, "sha512-DSmt0OEcLoK4i3NuscSbGjOf3bqiDEutejqENSplMSFA/gmB8mkED9G4pKWnPl7MDU4rSHebKPHeitpDfyH0cQ=="],
132
-
133
- "once": ["once@1.4.0", "https://registry.npmmirror.com/once/-/once-1.4.0.tgz", { "dependencies": { "wrappy": "1.0.2" } }, "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="],
134
-
135
- "openai": ["openai@5.23.1", "https://registry.npmmirror.com/openai/-/openai-5.23.1.tgz", { "optionalDependencies": { "zod": "3.25.76" }, "bin": { "openai": "bin/cli" } }, "sha512-APxMtm5mln4jhKhAr0d5zP9lNsClx4QwJtg8RUvYSSyxYCTHLNJnLEcSHbJ6t0ori8Pbr9HZGfcPJ7LEy73rvQ=="],
136
-
137
- "p-finally": ["p-finally@1.0.0", "https://registry.npmmirror.com/p-finally/-/p-finally-1.0.0.tgz", {}, "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow=="],
138
-
139
- "p-queue": ["p-queue@6.6.2", "https://registry.npmmirror.com/p-queue/-/p-queue-6.6.2.tgz", { "dependencies": { "eventemitter3": "4.0.7", "p-timeout": "3.2.0" } }, "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ=="],
140
-
141
- "p-retry": ["p-retry@4.6.2", "https://registry.npmmirror.com/p-retry/-/p-retry-4.6.2.tgz", { "dependencies": { "@types/retry": "0.12.0", "retry": "0.13.1" } }, "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ=="],
142
-
143
- "p-timeout": ["p-timeout@3.2.0", "https://registry.npmmirror.com/p-timeout/-/p-timeout-3.2.0.tgz", { "dependencies": { "p-finally": "1.0.0" } }, "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg=="],
144
-
145
- "prebuild-install": ["prebuild-install@7.1.3", "https://registry.npmmirror.com/prebuild-install/-/prebuild-install-7.1.3.tgz", { "dependencies": { "detect-libc": "^2.0.0", "expand-template": "^2.0.3", "github-from-package": "0.0.0", "minimist": "^1.2.3", "mkdirp-classic": "^0.5.3", "napi-build-utils": "^2.0.0", "node-abi": "^3.3.0", "pump": "^3.0.0", "rc": "^1.2.7", "simple-get": "^4.0.0", "tar-fs": "^2.0.0", "tunnel-agent": "^0.6.0" }, "bin": { "prebuild-install": "bin.js" } }, "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug=="],
146
-
147
- "pump": ["pump@3.0.3", "https://registry.npmmirror.com/pump/-/pump-3.0.3.tgz", { "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }, "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA=="],
148
-
149
- "rc": ["rc@1.2.8", "https://registry.npmmirror.com/rc/-/rc-1.2.8.tgz", { "dependencies": { "deep-extend": "^0.6.0", "ini": "~1.3.0", "minimist": "^1.2.0", "strip-json-comments": "~2.0.1" }, "bin": { "rc": "./cli.js" } }, "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw=="],
150
-
151
- "readable-stream": ["readable-stream@3.6.2", "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }, "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="],
152
-
153
- "retry": ["retry@0.13.1", "https://registry.npmmirror.com/retry/-/retry-0.13.1.tgz", {}, "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg=="],
154
-
155
- "safe-buffer": ["safe-buffer@5.2.1", "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="],
156
-
157
- "semver": ["semver@7.7.2", "https://registry.npmmirror.com/semver/-/semver-7.7.2.tgz", { "bin": { "semver": "bin/semver.js" } }, "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA=="],
158
-
159
- "simple-concat": ["simple-concat@1.0.1", "https://registry.npmmirror.com/simple-concat/-/simple-concat-1.0.1.tgz", {}, "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q=="],
160
-
161
- "simple-get": ["simple-get@4.0.1", "https://registry.npmmirror.com/simple-get/-/simple-get-4.0.1.tgz", { "dependencies": { "decompress-response": "^6.0.0", "once": "^1.3.1", "simple-concat": "^1.0.0" } }, "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA=="],
162
-
163
- "simple-wcswidth": ["simple-wcswidth@1.1.2", "https://registry.npmmirror.com/simple-wcswidth/-/simple-wcswidth-1.1.2.tgz", {}, "sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw=="],
164
-
165
- "string_decoder": ["string_decoder@1.3.0", "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz", { "dependencies": { "safe-buffer": "~5.2.0" } }, "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="],
166
-
167
- "strip-json-comments": ["strip-json-comments@2.0.1", "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz", {}, "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="],
168
-
169
- "supports-color": ["supports-color@7.2.0", "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz", { "dependencies": { "has-flag": "4.0.0" } }, "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="],
170
-
171
- "tar-fs": ["tar-fs@2.1.4", "https://registry.npmmirror.com/tar-fs/-/tar-fs-2.1.4.tgz", { "dependencies": { "chownr": "^1.1.1", "mkdirp-classic": "^0.5.2", "pump": "^3.0.0", "tar-stream": "^2.1.4" } }, "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ=="],
172
-
173
- "tar-stream": ["tar-stream@2.2.0", "https://registry.npmmirror.com/tar-stream/-/tar-stream-2.2.0.tgz", { "dependencies": { "bl": "^4.0.3", "end-of-stream": "^1.4.1", "fs-constants": "^1.0.0", "inherits": "^2.0.3", "readable-stream": "^3.1.1" } }, "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ=="],
174
-
175
- "ts-debounce": ["ts-debounce@4.0.0", "https://registry.npmmirror.com/ts-debounce/-/ts-debounce-4.0.0.tgz", {}, "sha512-+1iDGY6NmOGidq7i7xZGA4cm8DAa6fqdYcvO5Z6yBevH++Bdo9Qt/mN0TzHUgcCcKv1gmh9+W5dHqz8pMWbCbg=="],
176
-
177
- "tunnel-agent": ["tunnel-agent@0.6.0", "https://registry.npmmirror.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz", { "dependencies": { "safe-buffer": "^5.0.1" } }, "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w=="],
178
-
179
- "typescript": ["typescript@5.9.2", "https://registry.npmmirror.com/typescript/-/typescript-5.9.2.tgz", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A=="],
180
-
181
- "undici-types": ["undici-types@6.21.0", "https://registry.npmmirror.com/undici-types/-/undici-types-6.21.0.tgz", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
182
-
183
- "util-deprecate": ["util-deprecate@1.0.2", "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz", {}, "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="],
184
-
185
- "uuid": ["uuid@9.0.1", "https://registry.npmmirror.com/uuid/-/uuid-9.0.1.tgz", { "bin": { "uuid": "dist/bin/uuid" } }, "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA=="],
186
-
187
- "wrappy": ["wrappy@1.0.2", "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz", {}, "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="],
188
-
189
- "zod": ["zod@3.25.76", "https://registry.npmmirror.com/zod/-/zod-3.25.76.tgz", {}, "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ=="],
190
-
191
- "zod-to-json-schema": ["zod-to-json-schema@3.24.6", "https://registry.npmmirror.com/zod-to-json-schema/-/zod-to-json-schema-3.24.6.tgz", { "peerDependencies": { "zod": "3.25.76" } }, "sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg=="],
192
-
193
- "@langchain/core/uuid": ["uuid@10.0.0", "https://registry.npmmirror.com/uuid/-/uuid-10.0.0.tgz", { "bin": { "uuid": "dist/bin/uuid" } }, "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ=="],
194
-
195
- "@langchain/langgraph/uuid": ["uuid@10.0.0", "https://registry.npmmirror.com/uuid/-/uuid-10.0.0.tgz", { "bin": { "uuid": "dist/bin/uuid" } }, "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ=="],
196
-
197
- "@langchain/langgraph-checkpoint/uuid": ["uuid@10.0.0", "https://registry.npmmirror.com/uuid/-/uuid-10.0.0.tgz", { "bin": { "uuid": "dist/bin/uuid" } }, "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ=="],
198
-
199
- "@langchain/langgraph-checkpoint-sqlite/better-sqlite3": ["better-sqlite3@11.10.0", "https://registry.npmmirror.com/better-sqlite3/-/better-sqlite3-11.10.0.tgz", { "dependencies": { "bindings": "^1.5.0", "prebuild-install": "^7.1.1" } }, "sha512-EwhOpyXiOEL/lKzHz9AW1msWFNzGc/z+LzeB3/jnFJpxu+th2yqvzsSWas1v9jgs9+xiXJcD5A8CJxAG2TaghQ=="],
200
-
201
- "@langgraph-js/sdk/@langchain/langgraph-sdk": ["@langchain/langgraph-sdk@0.0.77", "https://registry.npmmirror.com/@langchain/langgraph-sdk/-/langgraph-sdk-0.0.77.tgz", { "dependencies": { "@types/json-schema": "7.0.15", "p-queue": "6.6.2", "p-retry": "4.6.2", "uuid": "9.0.1" }, "optionalDependencies": { "@langchain/core": "0.3.77" } }, "sha512-DMCONENhhaMS+Buw8s2UkKjAa9I6cT1aVJEDOmTO2lpon4Dqz/jiYUVJK7pTlNVSNvSx0E8aOmtT7NgGBcWflg=="],
202
-
203
- "chalk/ansi-styles": ["ansi-styles@4.3.0", "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", { "dependencies": { "color-convert": "2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
204
-
205
- "langsmith/uuid": ["uuid@10.0.0", "https://registry.npmmirror.com/uuid/-/uuid-10.0.0.tgz", { "bin": { "uuid": "dist/bin/uuid" } }, "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ=="],
206
-
207
- "p-queue/eventemitter3": ["eventemitter3@4.0.7", "https://registry.npmmirror.com/eventemitter3/-/eventemitter3-4.0.7.tgz", {}, "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="],
208
- }
209
- }
@@ -1,203 +0,0 @@
1
- import z from "zod";
2
- export declare const AssistantConfigurable: z.ZodObject<{
3
- thread_id: z.ZodOptional<z.ZodString>;
4
- thread_ts: z.ZodOptional<z.ZodString>;
5
- }, "strip", z.ZodUnknown, z.objectOutputType<{
6
- thread_id: z.ZodOptional<z.ZodString>;
7
- thread_ts: z.ZodOptional<z.ZodString>;
8
- }, z.ZodUnknown, "strip">, z.objectInputType<{
9
- thread_id: z.ZodOptional<z.ZodString>;
10
- thread_ts: z.ZodOptional<z.ZodString>;
11
- }, z.ZodUnknown, "strip">>;
12
- export declare const AssistantConfig: z.ZodObject<{
13
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
14
- recursion_limit: z.ZodOptional<z.ZodNumber>;
15
- configurable: z.ZodOptional<z.ZodObject<{
16
- thread_id: z.ZodOptional<z.ZodString>;
17
- thread_ts: z.ZodOptional<z.ZodString>;
18
- }, "strip", z.ZodUnknown, z.objectOutputType<{
19
- thread_id: z.ZodOptional<z.ZodString>;
20
- thread_ts: z.ZodOptional<z.ZodString>;
21
- }, z.ZodUnknown, "strip">, z.objectInputType<{
22
- thread_id: z.ZodOptional<z.ZodString>;
23
- thread_ts: z.ZodOptional<z.ZodString>;
24
- }, z.ZodUnknown, "strip">>>;
25
- }, "strip", z.ZodUnknown, z.objectOutputType<{
26
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
27
- recursion_limit: z.ZodOptional<z.ZodNumber>;
28
- configurable: z.ZodOptional<z.ZodObject<{
29
- thread_id: z.ZodOptional<z.ZodString>;
30
- thread_ts: z.ZodOptional<z.ZodString>;
31
- }, "strip", z.ZodUnknown, z.objectOutputType<{
32
- thread_id: z.ZodOptional<z.ZodString>;
33
- thread_ts: z.ZodOptional<z.ZodString>;
34
- }, z.ZodUnknown, "strip">, z.objectInputType<{
35
- thread_id: z.ZodOptional<z.ZodString>;
36
- thread_ts: z.ZodOptional<z.ZodString>;
37
- }, z.ZodUnknown, "strip">>>;
38
- }, z.ZodUnknown, "strip">, z.objectInputType<{
39
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
40
- recursion_limit: z.ZodOptional<z.ZodNumber>;
41
- configurable: z.ZodOptional<z.ZodObject<{
42
- thread_id: z.ZodOptional<z.ZodString>;
43
- thread_ts: z.ZodOptional<z.ZodString>;
44
- }, "strip", z.ZodUnknown, z.objectOutputType<{
45
- thread_id: z.ZodOptional<z.ZodString>;
46
- thread_ts: z.ZodOptional<z.ZodString>;
47
- }, z.ZodUnknown, "strip">, z.objectInputType<{
48
- thread_id: z.ZodOptional<z.ZodString>;
49
- thread_ts: z.ZodOptional<z.ZodString>;
50
- }, z.ZodUnknown, "strip">>>;
51
- }, z.ZodUnknown, "strip">>;
52
- export declare const Assistant: z.ZodObject<{
53
- assistant_id: z.ZodString;
54
- graph_id: z.ZodString;
55
- config: z.ZodObject<{
56
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
57
- recursion_limit: z.ZodOptional<z.ZodNumber>;
58
- configurable: z.ZodOptional<z.ZodObject<{
59
- thread_id: z.ZodOptional<z.ZodString>;
60
- thread_ts: z.ZodOptional<z.ZodString>;
61
- }, "strip", z.ZodUnknown, z.objectOutputType<{
62
- thread_id: z.ZodOptional<z.ZodString>;
63
- thread_ts: z.ZodOptional<z.ZodString>;
64
- }, z.ZodUnknown, "strip">, z.objectInputType<{
65
- thread_id: z.ZodOptional<z.ZodString>;
66
- thread_ts: z.ZodOptional<z.ZodString>;
67
- }, z.ZodUnknown, "strip">>>;
68
- }, "strip", z.ZodUnknown, z.objectOutputType<{
69
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
70
- recursion_limit: z.ZodOptional<z.ZodNumber>;
71
- configurable: z.ZodOptional<z.ZodObject<{
72
- thread_id: z.ZodOptional<z.ZodString>;
73
- thread_ts: z.ZodOptional<z.ZodString>;
74
- }, "strip", z.ZodUnknown, z.objectOutputType<{
75
- thread_id: z.ZodOptional<z.ZodString>;
76
- thread_ts: z.ZodOptional<z.ZodString>;
77
- }, z.ZodUnknown, "strip">, z.objectInputType<{
78
- thread_id: z.ZodOptional<z.ZodString>;
79
- thread_ts: z.ZodOptional<z.ZodString>;
80
- }, z.ZodUnknown, "strip">>>;
81
- }, z.ZodUnknown, "strip">, z.objectInputType<{
82
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
83
- recursion_limit: z.ZodOptional<z.ZodNumber>;
84
- configurable: z.ZodOptional<z.ZodObject<{
85
- thread_id: z.ZodOptional<z.ZodString>;
86
- thread_ts: z.ZodOptional<z.ZodString>;
87
- }, "strip", z.ZodUnknown, z.objectOutputType<{
88
- thread_id: z.ZodOptional<z.ZodString>;
89
- thread_ts: z.ZodOptional<z.ZodString>;
90
- }, z.ZodUnknown, "strip">, z.objectInputType<{
91
- thread_id: z.ZodOptional<z.ZodString>;
92
- thread_ts: z.ZodOptional<z.ZodString>;
93
- }, z.ZodUnknown, "strip">>>;
94
- }, z.ZodUnknown, "strip">>;
95
- created_at: z.ZodString;
96
- updated_at: z.ZodString;
97
- metadata: z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>;
98
- }, "strip", z.ZodTypeAny, {
99
- created_at: string;
100
- updated_at: string;
101
- metadata: {} & {
102
- [k: string]: any;
103
- };
104
- assistant_id: string;
105
- config: {
106
- configurable?: z.objectOutputType<{
107
- thread_id: z.ZodOptional<z.ZodString>;
108
- thread_ts: z.ZodOptional<z.ZodString>;
109
- }, z.ZodUnknown, "strip"> | undefined;
110
- tags?: string[] | undefined;
111
- recursion_limit?: number | undefined;
112
- } & {
113
- [k: string]: unknown;
114
- };
115
- graph_id: string;
116
- }, {
117
- created_at: string;
118
- updated_at: string;
119
- metadata: {} & {
120
- [k: string]: any;
121
- };
122
- assistant_id: string;
123
- config: {
124
- configurable?: z.objectInputType<{
125
- thread_id: z.ZodOptional<z.ZodString>;
126
- thread_ts: z.ZodOptional<z.ZodString>;
127
- }, z.ZodUnknown, "strip"> | undefined;
128
- tags?: string[] | undefined;
129
- recursion_limit?: number | undefined;
130
- } & {
131
- [k: string]: unknown;
132
- };
133
- graph_id: string;
134
- }>;
135
- export declare const MetadataSchema: z.ZodObject<{
136
- source: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"input">, z.ZodLiteral<"loop">, z.ZodLiteral<"update">, z.ZodString]>>;
137
- step: z.ZodOptional<z.ZodNumber>;
138
- writes: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
139
- parents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
140
- }, "strip", z.ZodUnknown, z.objectOutputType<{
141
- source: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"input">, z.ZodLiteral<"loop">, z.ZodLiteral<"update">, z.ZodString]>>;
142
- step: z.ZodOptional<z.ZodNumber>;
143
- writes: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
144
- parents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
145
- }, z.ZodUnknown, "strip">, z.objectInputType<{
146
- source: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"input">, z.ZodLiteral<"loop">, z.ZodLiteral<"update">, z.ZodString]>>;
147
- step: z.ZodOptional<z.ZodNumber>;
148
- writes: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
149
- parents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
150
- }, z.ZodUnknown, "strip">>;
151
- export declare const SendSchema: z.ZodObject<{
152
- node: z.ZodString;
153
- input: z.ZodNullable<z.ZodUnknown>;
154
- }, "strip", z.ZodTypeAny, {
155
- node: string;
156
- input?: unknown;
157
- }, {
158
- node: string;
159
- input?: unknown;
160
- }>;
161
- export declare const CommandSchema: z.ZodObject<{
162
- update: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodUnknown], null>, "many">]>>>;
163
- resume: z.ZodOptional<z.ZodUnknown>;
164
- goto: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
165
- node: z.ZodString;
166
- input: z.ZodNullable<z.ZodUnknown>;
167
- }, "strip", z.ZodTypeAny, {
168
- node: string;
169
- input?: unknown;
170
- }, {
171
- node: string;
172
- input?: unknown;
173
- }>, z.ZodArray<z.ZodObject<{
174
- node: z.ZodString;
175
- input: z.ZodNullable<z.ZodUnknown>;
176
- }, "strip", z.ZodTypeAny, {
177
- node: string;
178
- input?: unknown;
179
- }, {
180
- node: string;
181
- input?: unknown;
182
- }>, "many">, z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
183
- }, "strip", z.ZodTypeAny, {
184
- update?: Record<string, unknown> | [string, unknown][] | null | undefined;
185
- resume?: unknown;
186
- goto?: string | string[] | {
187
- node: string;
188
- input?: unknown;
189
- } | {
190
- node: string;
191
- input?: unknown;
192
- }[] | undefined;
193
- }, {
194
- update?: Record<string, unknown> | [string, unknown][] | null | undefined;
195
- resume?: unknown;
196
- goto?: string | string[] | {
197
- node: string;
198
- input?: unknown;
199
- } | {
200
- node: string;
201
- input?: unknown;
202
- }[] | undefined;
203
- }>;
@@ -1,60 +0,0 @@
1
- import z from "zod";
2
- export const AssistantConfigurable = z
3
- .object({
4
- thread_id: z.string().optional(),
5
- thread_ts: z.string().optional(),
6
- })
7
- .catchall(z.unknown());
8
- export const AssistantConfig = z
9
- .object({
10
- tags: z.array(z.string()).optional(),
11
- recursion_limit: z.number().int().optional(),
12
- configurable: AssistantConfigurable.optional(),
13
- })
14
- .catchall(z.unknown())
15
- .describe("The configuration of an assistant.");
16
- export const Assistant = z.object({
17
- assistant_id: z.string().uuid(),
18
- graph_id: z.string(),
19
- config: AssistantConfig,
20
- created_at: z.string(),
21
- updated_at: z.string(),
22
- metadata: z.object({}).catchall(z.any()),
23
- });
24
- export const MetadataSchema = z
25
- .object({
26
- source: z
27
- .union([
28
- z.literal("input"),
29
- z.literal("loop"),
30
- z.literal("update"),
31
- z.string(),
32
- ])
33
- .optional(),
34
- step: z.number().optional(),
35
- writes: z.record(z.unknown()).nullable().optional(),
36
- parents: z.record(z.string()).optional(),
37
- })
38
- .catchall(z.unknown());
39
- export const SendSchema = z.object({
40
- node: z.string(),
41
- input: z.unknown().nullable(),
42
- });
43
- export const CommandSchema = z.object({
44
- update: z
45
- .union([
46
- z.record(z.unknown()),
47
- z.array(z.tuple([z.string(), z.unknown()])),
48
- ])
49
- .nullable()
50
- .optional(),
51
- resume: z.unknown().optional(),
52
- goto: z
53
- .union([
54
- SendSchema,
55
- z.array(SendSchema),
56
- z.string(),
57
- z.array(z.string()),
58
- ])
59
- .optional(),
60
- });
@@ -1,36 +0,0 @@
1
- This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
2
-
3
- ## Getting Started
4
-
5
- First, run the development server:
6
-
7
- ```bash
8
- npm run dev
9
- # or
10
- yarn dev
11
- # or
12
- pnpm dev
13
- # or
14
- bun dev
15
- ```
16
-
17
- Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
18
-
19
- You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
20
-
21
- This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
22
-
23
- ## Learn More
24
-
25
- To learn more about Next.js, take a look at the following resources:
26
-
27
- - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
28
- - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
29
-
30
- You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
31
-
32
- ## Deploy on Vercel
33
-
34
- The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
35
-
36
- Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
@@ -1,10 +0,0 @@
1
- import {
2
- GET,
3
- POST,
4
- DELETE,
5
- } from "@langgraph-js/pure-graph/dist/adapter/nextjs/router.js";
6
- import { registerGraph } from "@langgraph-js/pure-graph";
7
- import { graph } from "../../../../../../test/graph/index";
8
- registerGraph("test", graph);
9
-
10
- export { GET, POST, DELETE };