langgraph-api 0.2.27__py3-none-any.whl → 0.2.29__py3-none-any.whl

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.

Potentially problematic release.


This version of langgraph-api might be problematic. Click here for more details.

Files changed (37) hide show
  1. langgraph_api/__init__.py +1 -1
  2. langgraph_api/api/assistants.py +4 -4
  3. langgraph_api/api/store.py +10 -6
  4. langgraph_api/config.py +1 -0
  5. langgraph_api/graph.py +28 -5
  6. langgraph_api/js/remote.py +16 -11
  7. langgraph_api/metadata.py +28 -16
  8. langgraph_api/store.py +127 -0
  9. langgraph_api/stream.py +17 -7
  10. langgraph_api/worker.py +1 -1
  11. {langgraph_api-0.2.27.dist-info → langgraph_api-0.2.29.dist-info}/METADATA +24 -30
  12. {langgraph_api-0.2.27.dist-info → langgraph_api-0.2.29.dist-info}/RECORD +43 -63
  13. {langgraph_api-0.2.27.dist-info → langgraph_api-0.2.29.dist-info}/WHEEL +1 -1
  14. langgraph_api-0.2.29.dist-info/entry_points.txt +2 -0
  15. langgraph_api/js/tests/api.test.mts +0 -2194
  16. langgraph_api/js/tests/auth.test.mts +0 -648
  17. langgraph_api/js/tests/compose-postgres.auth.yml +0 -59
  18. langgraph_api/js/tests/compose-postgres.yml +0 -59
  19. langgraph_api/js/tests/graphs/.gitignore +0 -1
  20. langgraph_api/js/tests/graphs/agent.css +0 -1
  21. langgraph_api/js/tests/graphs/agent.mts +0 -187
  22. langgraph_api/js/tests/graphs/agent.ui.tsx +0 -10
  23. langgraph_api/js/tests/graphs/agent_simple.mts +0 -105
  24. langgraph_api/js/tests/graphs/auth.mts +0 -106
  25. langgraph_api/js/tests/graphs/command.mts +0 -48
  26. langgraph_api/js/tests/graphs/delay.mts +0 -30
  27. langgraph_api/js/tests/graphs/dynamic.mts +0 -24
  28. langgraph_api/js/tests/graphs/error.mts +0 -17
  29. langgraph_api/js/tests/graphs/http.mts +0 -76
  30. langgraph_api/js/tests/graphs/langgraph.json +0 -11
  31. langgraph_api/js/tests/graphs/nested.mts +0 -44
  32. langgraph_api/js/tests/graphs/package.json +0 -13
  33. langgraph_api/js/tests/graphs/weather.mts +0 -57
  34. langgraph_api/js/tests/graphs/yarn.lock +0 -242
  35. langgraph_api/js/tests/utils.mts +0 -17
  36. langgraph_api-0.2.27.dist-info/entry_points.txt +0 -3
  37. {langgraph_api-0.2.27.dist-info → langgraph_api-0.2.29.dist-info/licenses}/LICENSE +0 -0
@@ -1,44 +0,0 @@
1
- import { Annotation, StateGraph, END, START } from "@langchain/langgraph";
2
-
3
- const child = new StateGraph(
4
- Annotation.Root({
5
- messages: Annotation<string[]>({
6
- reducer: (a, b) => a.concat(b),
7
- }),
8
- child: Annotation<"child_one" | "child_two">,
9
- }),
10
- )
11
- .addNode("c_one", () => ({ messages: ["Entered c_one node"] }))
12
- .addNode("c_two", () => ({ messages: ["Entered c_two node"] }))
13
- .addEdge(START, "c_one")
14
- .addEdge("c_one", "c_two")
15
- .addEdge("c_two", END);
16
-
17
- const parent = new StateGraph(
18
- Annotation.Root({
19
- messages: Annotation<string[]>({
20
- reducer: (a, b) => a.concat(b),
21
- }),
22
- parent: Annotation<"parent_one" | "parent_two">,
23
- }),
24
- )
25
- .addNode("p_one", () => ({ messages: ["Entered p_one node"] }))
26
- .addNode("p_two", child.compile())
27
- .addEdge(START, "p_one")
28
- .addEdge("p_one", "p_two")
29
- .addEdge("p_two", END);
30
-
31
- const grandParent = new StateGraph(
32
- Annotation.Root({
33
- messages: Annotation<string[]>({
34
- reducer: (a, b) => a.concat(b),
35
- }),
36
- }),
37
- )
38
- .addNode("gp_one", () => ({ messages: ["Entered gp_one node"] }))
39
- .addNode("gp_two", parent.compile())
40
- .addEdge(START, "gp_one")
41
- .addEdge("gp_one", "gp_two")
42
- .addEdge("gp_two", END);
43
-
44
- export const graph = grandParent.compile();
@@ -1,13 +0,0 @@
1
- {
2
- "private": true,
3
- "dependencies": {
4
- "@langchain/core": "^0.3.40",
5
- "@langchain/langgraph": "0.2.65",
6
- "@langchain/langgraph-sdk": "^0.0.67",
7
- "jose": "^6.0.10",
8
- "hono": "^4.5.4"
9
- },
10
- "devDependencies": {
11
- "tailwindcss": "^4.1.1"
12
- }
13
- }
@@ -1,57 +0,0 @@
1
- import { Annotation, StateGraph, END, START } from "@langchain/langgraph";
2
- import { MessagesAnnotation } from "@langchain/langgraph";
3
- import { AIMessage } from "@langchain/core/messages";
4
-
5
- const state = MessagesAnnotation;
6
-
7
- const weatherState = Annotation.Root({
8
- ...state.spec,
9
- city: Annotation<string>,
10
- });
11
-
12
- const routerState = Annotation.Root({
13
- ...state.spec,
14
- route: Annotation<"weather" | "other">,
15
- });
16
-
17
- const weather = new StateGraph(weatherState)
18
- .addNode("model_node", (state) => {
19
- const llm = new AIMessage({
20
- content: "",
21
- tool_calls: [
22
- {
23
- id: "tool_call123",
24
- name: "get_weather",
25
- args: { city: "San Francisco" },
26
- },
27
- ],
28
- });
29
-
30
- return { city: llm.tool_calls![0].args.city };
31
- })
32
- .addNode("weather_node", async (state) => {
33
- const result = `It's sunny in ${state.city}!`;
34
- return { messages: [new AIMessage({ content: result })] };
35
- })
36
- .addEdge(START, "model_node")
37
- .addEdge("model_node", "weather_node")
38
- .addEdge("weather_node", END)
39
- .compile({ interruptBefore: ["weather_node"] });
40
-
41
- const router = new StateGraph(routerState)
42
- .addNode("router_node", async () => ({ route: "weather" }))
43
- .addNode("normal_llm_node", () => ({ messages: [new AIMessage("Hello")] }))
44
- .addNode("weather_graph", weather)
45
- .addEdge(START, "router_node")
46
- .addConditionalEdges(
47
- "router_node",
48
- ({ route }) => {
49
- if (route === "weather") return "weather_graph";
50
- return "normal_llm_node";
51
- },
52
- ["weather_graph", "normal_llm_node"],
53
- )
54
- .addEdge("weather_graph", END)
55
- .addEdge("normal_llm_node", END);
56
-
57
- export const graph = router.compile();
@@ -1,242 +0,0 @@
1
- # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
- # yarn lockfile v1
3
-
4
-
5
- "@cfworker/json-schema@^4.0.2":
6
- version "4.1.0"
7
- resolved "https://registry.yarnpkg.com/@cfworker/json-schema/-/json-schema-4.1.0.tgz#cc114da98c23b12f4cd4673ce8a076be24e0233c"
8
- integrity sha512-/vYKi/qMxwNsuIJ9WGWwM2rflY40ZenK3Kh4uR5vB9/Nz12Y7IUN/Xf4wDA7vzPfw0VNh3b/jz4+MjcVgARKJg==
9
-
10
- "@langchain/core@^0.3.40":
11
- version "0.3.42"
12
- resolved "https://registry.yarnpkg.com/@langchain/core/-/core-0.3.42.tgz#f1fa38425626d8efe9fe2ee51d36c91506632363"
13
- integrity sha512-pT/jC5lqWK3YGDq8dQwgKoa6anqAhMtG1x5JbnrOj9NdaLeBbCKBDQ+/Ykzk3nZ8o+0UMsaXNZo7IVL83VVjHg==
14
- dependencies:
15
- "@cfworker/json-schema" "^4.0.2"
16
- ansi-styles "^5.0.0"
17
- camelcase "6"
18
- decamelize "1.2.0"
19
- js-tiktoken "^1.0.12"
20
- langsmith ">=0.2.8 <0.4.0"
21
- mustache "^4.2.0"
22
- p-queue "^6.6.2"
23
- p-retry "4"
24
- uuid "^10.0.0"
25
- zod "^3.22.4"
26
- zod-to-json-schema "^3.22.3"
27
-
28
- "@langchain/langgraph-checkpoint@~0.0.17":
29
- version "0.0.17"
30
- resolved "https://registry.yarnpkg.com/@langchain/langgraph-checkpoint/-/langgraph-checkpoint-0.0.17.tgz#d0a8824eb0769567da54262adebe65db4ee6d58f"
31
- integrity sha512-6b3CuVVYx+7x0uWLG+7YXz9j2iBa+tn2AXvkLxzEvaAsLE6Sij++8PPbS2BZzC+S/FPJdWsz6I5bsrqL0BYrCA==
32
- dependencies:
33
- uuid "^10.0.0"
34
-
35
- "@langchain/langgraph-sdk@^0.0.67", "@langchain/langgraph-sdk@~0.0.32":
36
- version "0.0.67"
37
- resolved "https://registry.yarnpkg.com/@langchain/langgraph-sdk/-/langgraph-sdk-0.0.67.tgz#d856110727669f59cf9367cea99d88479de164d4"
38
- integrity sha512-JWa0OuiXPoFztmBleUj6N00snuZt80Df6BSMUEjBfMSRNVPn7yiyyz/QTkzuW1LqqVZKPI4O8Bpimnw2xIg3BA==
39
- dependencies:
40
- "@types/json-schema" "^7.0.15"
41
- p-queue "^6.6.2"
42
- p-retry "4"
43
- uuid "^9.0.0"
44
-
45
- "@langchain/langgraph@0.2.65":
46
- version "0.2.65"
47
- resolved "https://registry.yarnpkg.com/@langchain/langgraph/-/langgraph-0.2.65.tgz#f080add1c26a3eb3744af2ef23b8b53eddbf5cb2"
48
- integrity sha512-g/Xap2KSEaEBXMJXGZTh31fd0qrdfaWA1l8NJzweJg6AkvVSf+d6DmMk9DtzGW8W1H1qQ2I6FWZ3AdP61Kkaig==
49
- dependencies:
50
- "@langchain/langgraph-checkpoint" "~0.0.17"
51
- "@langchain/langgraph-sdk" "~0.0.32"
52
- uuid "^10.0.0"
53
- zod "^3.23.8"
54
-
55
- "@types/json-schema@^7.0.15":
56
- version "7.0.15"
57
- resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841"
58
- integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
59
-
60
- "@types/retry@0.12.0":
61
- version "0.12.0"
62
- resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d"
63
- integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==
64
-
65
- "@types/uuid@^10.0.0":
66
- version "10.0.0"
67
- resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-10.0.0.tgz#e9c07fe50da0f53dc24970cca94d619ff03f6f6d"
68
- integrity sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==
69
-
70
- ansi-styles@^4.1.0:
71
- version "4.3.0"
72
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
73
- integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
74
- dependencies:
75
- color-convert "^2.0.1"
76
-
77
- ansi-styles@^5.0.0:
78
- version "5.2.0"
79
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b"
80
- integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==
81
-
82
- base64-js@^1.5.1:
83
- version "1.5.1"
84
- resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
85
- integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
86
-
87
- camelcase@6:
88
- version "6.3.0"
89
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
90
- integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
91
-
92
- chalk@^4.1.2:
93
- version "4.1.2"
94
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
95
- integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
96
- dependencies:
97
- ansi-styles "^4.1.0"
98
- supports-color "^7.1.0"
99
-
100
- color-convert@^2.0.1:
101
- version "2.0.1"
102
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
103
- integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
104
- dependencies:
105
- color-name "~1.1.4"
106
-
107
- color-name@~1.1.4:
108
- version "1.1.4"
109
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
110
- integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
111
-
112
- console-table-printer@^2.12.1:
113
- version "2.12.1"
114
- resolved "https://registry.yarnpkg.com/console-table-printer/-/console-table-printer-2.12.1.tgz#4a9646537a246a6d8de57075d4fae1e08abae267"
115
- integrity sha512-wKGOQRRvdnd89pCeH96e2Fn4wkbenSP6LMHfjfyNLMbGuHEFbMqQNuxXqd0oXG9caIOQ1FTvc5Uijp9/4jujnQ==
116
- dependencies:
117
- simple-wcswidth "^1.0.1"
118
-
119
- decamelize@1.2.0:
120
- version "1.2.0"
121
- resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
122
- integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==
123
-
124
- eventemitter3@^4.0.4:
125
- version "4.0.7"
126
- resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
127
- integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
128
-
129
- has-flag@^4.0.0:
130
- version "4.0.0"
131
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
132
- integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
133
-
134
- hono@^4.5.4:
135
- version "4.7.6"
136
- resolved "https://registry.yarnpkg.com/hono/-/hono-4.7.6.tgz#3b577a825de3bf97b27705d918890a660726835e"
137
- integrity sha512-564rVzELU+9BRqqx5k8sT2NFwGD3I3Vifdb6P7CmM6FiarOSY+fDC+6B+k9wcCb86ReoayteZP2ki0cRLN1jbw==
138
-
139
- jose@^6.0.10:
140
- version "6.0.10"
141
- resolved "https://registry.yarnpkg.com/jose/-/jose-6.0.10.tgz#52d96e1a671b4c02e13b71e0d35abea2e774712b"
142
- integrity sha512-skIAxZqcMkOrSwjJvplIPYrlXGpxTPnro2/QWTDCxAdWQrSTV5/KqspMWmi5WAx5+ULswASJiZ0a+1B/Lxt9cw==
143
-
144
- js-tiktoken@^1.0.12:
145
- version "1.0.12"
146
- resolved "https://registry.yarnpkg.com/js-tiktoken/-/js-tiktoken-1.0.12.tgz#af0f5cf58e5e7318240d050c8413234019424211"
147
- integrity sha512-L7wURW1fH9Qaext0VzaUDpFGVQgjkdE3Dgsy9/+yXyGEpBKnylTd0mU0bfbNkKDlXRb6TEsZkwuflu1B8uQbJQ==
148
- dependencies:
149
- base64-js "^1.5.1"
150
-
151
- "langsmith@>=0.2.8 <0.4.0":
152
- version "0.3.3"
153
- resolved "https://registry.yarnpkg.com/langsmith/-/langsmith-0.3.3.tgz#fcb61454842cf2f85c937f536fa0729544c7c467"
154
- integrity sha512-B9B0ThaPYwNdTg9ck6bWF2Mjd1TJvVKLfLedufIudmO8aPDslcc2uVlyPEtskZFEdmfjfVHEqDnhnuAhyifrZQ==
155
- dependencies:
156
- "@types/uuid" "^10.0.0"
157
- chalk "^4.1.2"
158
- console-table-printer "^2.12.1"
159
- p-queue "^6.6.2"
160
- p-retry "4"
161
- semver "^7.6.3"
162
- uuid "^10.0.0"
163
-
164
- mustache@^4.2.0:
165
- version "4.2.0"
166
- resolved "https://registry.yarnpkg.com/mustache/-/mustache-4.2.0.tgz#e5892324d60a12ec9c2a73359edca52972bf6f64"
167
- integrity sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==
168
-
169
- p-finally@^1.0.0:
170
- version "1.0.0"
171
- resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
172
- integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==
173
-
174
- p-queue@^6.6.2:
175
- version "6.6.2"
176
- resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426"
177
- integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==
178
- dependencies:
179
- eventemitter3 "^4.0.4"
180
- p-timeout "^3.2.0"
181
-
182
- p-retry@4:
183
- version "4.6.2"
184
- resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.6.2.tgz#9baae7184057edd4e17231cee04264106e092a16"
185
- integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==
186
- dependencies:
187
- "@types/retry" "0.12.0"
188
- retry "^0.13.1"
189
-
190
- p-timeout@^3.2.0:
191
- version "3.2.0"
192
- resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe"
193
- integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==
194
- dependencies:
195
- p-finally "^1.0.0"
196
-
197
- retry@^0.13.1:
198
- version "0.13.1"
199
- resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658"
200
- integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==
201
-
202
- semver@^7.6.3:
203
- version "7.6.3"
204
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143"
205
- integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
206
-
207
- simple-wcswidth@^1.0.1:
208
- version "1.0.1"
209
- resolved "https://registry.yarnpkg.com/simple-wcswidth/-/simple-wcswidth-1.0.1.tgz#8ab18ac0ae342f9d9b629604e54d2aa1ecb018b2"
210
- integrity sha512-xMO/8eNREtaROt7tJvWJqHBDTMFN4eiQ5I4JRMuilwfnFcV5W9u7RUkueNkdw0jPqGMX36iCywelS5yilTuOxg==
211
-
212
- supports-color@^7.1.0:
213
- version "7.2.0"
214
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
215
- integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
216
- dependencies:
217
- has-flag "^4.0.0"
218
-
219
- tailwindcss@^4.1.1:
220
- version "4.1.1"
221
- resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-4.1.1.tgz#f2bae12b32687e63afa37c4f638b89520104e83f"
222
- integrity sha512-QNbdmeS979Efzim2g/bEvfuh+fTcIdp1y7gA+sb6OYSW74rt7Cr7M78AKdf6HqWT3d5AiTb7SwTT3sLQxr4/qw==
223
-
224
- uuid@^10.0.0:
225
- version "10.0.0"
226
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-10.0.0.tgz#5a95aa454e6e002725c79055fd42aaba30ca6294"
227
- integrity sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==
228
-
229
- uuid@^9.0.0:
230
- version "9.0.1"
231
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30"
232
- integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==
233
-
234
- zod-to-json-schema@^3.22.3:
235
- version "3.23.2"
236
- resolved "https://registry.yarnpkg.com/zod-to-json-schema/-/zod-to-json-schema-3.23.2.tgz#bc7e379c8050462538383e382964c03d8fe008f9"
237
- integrity sha512-uSt90Gzc/tUfyNqxnjlfBs8W6WSGpNBv0rVsNxP/BVSMHMKGdthPYff4xtCHYloJGM0CFxFsb3NbC0eqPhfImw==
238
-
239
- zod@^3.22.4, zod@^3.23.8:
240
- version "3.23.8"
241
- resolved "https://registry.yarnpkg.com/zod/-/zod-3.23.8.tgz#e37b957b5d52079769fb8097099b592f0ef4067d"
242
- integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==
@@ -1,17 +0,0 @@
1
- export async function gatherIterator<T>(
2
- i: AsyncIterable<T> | Promise<AsyncIterable<T>>,
3
- ): Promise<Array<T>> {
4
- const out: T[] = [];
5
- for await (const item of await i) out.push(item);
6
- return out;
7
- }
8
-
9
- export function findLast<T, S extends T>(
10
- lst: Array<T>,
11
- predicate: (item: T) => item is S,
12
- ): S | undefined {
13
- for (let i = lst.length - 1; i >= 0; i--) {
14
- if (predicate(lst[i])) return lst[i] as S;
15
- }
16
- return undefined;
17
- }
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- langgraph-verify-graphs=langgraph_api.graph:verify_graphs
3
-