langgraph-api 0.2.120__tar.gz → 0.2.124__tar.gz
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.
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/Makefile +1 -1
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/PKG-INFO +2 -2
- langgraph_api-0.2.124/langgraph_api/__init__.py +1 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/api/runs.py +0 -6
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/queue_entrypoint.py +17 -1
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/pyproject.toml +1 -1
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/uv.lock +16 -16
- langgraph_api-0.2.120/langgraph_api/__init__.py +0 -1
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/.gitignore +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/LICENSE +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/README.md +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/benchmark/.gitignore +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/benchmark/Makefile +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/benchmark/README.md +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/benchmark/burst.js +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/benchmark/ramp.js +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/benchmark/weather.js +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/constraints.txt +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/forbidden.txt +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/healthcheck.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/api/__init__.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/api/assistants.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/api/mcp.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/api/meta.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/api/openapi.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/api/store.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/api/threads.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/api/ui.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/asgi_transport.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/asyncio.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/auth/__init__.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/auth/custom.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/auth/langsmith/__init__.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/auth/langsmith/backend.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/auth/langsmith/client.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/auth/middleware.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/auth/noop.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/auth/studio_user.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/cli.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/command.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/config.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/cron_scheduler.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/errors.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/feature_flags.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/graph.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/http.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/http_metrics.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/.gitignore +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/.prettierrc +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/__init__.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/base.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/build.mts +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/client.http.mts +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/client.mts +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/errors.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/global.d.ts +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/package.json +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/remote.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/schema.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/src/graph.mts +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/src/load.hooks.mjs +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/src/preload.mjs +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/src/utils/files.mts +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/src/utils/importMap.mts +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/src/utils/pythonSchemas.mts +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/src/utils/serde.mts +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/sse.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/traceblock.mts +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/tsconfig.json +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/ui.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/yarn.lock +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/logging.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/metadata.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/middleware/__init__.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/middleware/http_logger.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/middleware/private_network.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/middleware/request_id.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/models/__init__.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/models/run.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/patch.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/route.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/schema.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/serde.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/server.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/sse.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/state.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/store.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/stream.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/thread_ttl.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/traceblock.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/tunneling/cloudflare.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/utils/__init__.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/utils/cache.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/utils/config.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/utils/future.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/utils.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/validation.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/webhook.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/worker.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_license/__init__.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_license/validation.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_runtime/__init__.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_runtime/checkpoint.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_runtime/database.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_runtime/lifespan.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_runtime/metrics.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_runtime/ops.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_runtime/queue.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_runtime/retry.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_runtime/store.py +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/logging.json +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/openapi.json +0 -0
- {langgraph_api-0.2.120 → langgraph_api-0.2.124}/scripts/create_license.py +0 -0
|
@@ -54,7 +54,7 @@ start:
|
|
|
54
54
|
LANGGRAPH_RUNTIME_EDITION=inmem \
|
|
55
55
|
LANGGRAPH_AES_KEY='$(LANGGRAPH_AES_KEY)' \
|
|
56
56
|
N_JOBS_PER_WORKER=2 \
|
|
57
|
-
LANGSERVE_GRAPHS='{"agent": "./tests/graphs/agent.py:graph", "single_node": "./tests/graphs/single_node.py:graph", "benchmark": "./tests/graphs/benchmark.py:graph", "other": "./tests/graphs/other.py:make_graph", "weather": "./tests/graphs/weather.py:mk_weather_graph", "searchy": "./tests/graphs/searchy.py:graph", "agent_simple": "./tests/graphs/agent_simple.py:graph", "simple_runtime": "./tests/graphs/simple_runtime.py:graph"}' \
|
|
57
|
+
LANGSERVE_GRAPHS='{"agent": "./tests/graphs/agent.py:graph", "custom_lifespan": "./tests/graphs/my_router.py:graph", "single_node": "./tests/graphs/single_node.py:graph", "benchmark": "./tests/graphs/benchmark.py:graph", "other": "./tests/graphs/other.py:make_graph", "weather": "./tests/graphs/weather.py:mk_weather_graph", "searchy": "./tests/graphs/searchy.py:graph", "agent_simple": "./tests/graphs/agent_simple.py:graph", "simple_runtime": "./tests/graphs/simple_runtime.py:graph"}' \
|
|
58
58
|
LANGGRAPH_STORE='$(STORE_CONFIG)' \
|
|
59
59
|
LANGGRAPH_CONFIG='{"agent": {"configurable": {"model_name": "openai"}}}' \
|
|
60
60
|
LANGSMITH_LANGGRAPH_API_VARIANT=test \
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: langgraph-api
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.124
|
|
4
4
|
Author-email: Nuno Campos <nuno@langchain.dev>, Will Fu-Hinthorn <will@langchain.dev>
|
|
5
5
|
License: Elastic-2.0
|
|
6
6
|
License-File: LICENSE
|
|
@@ -11,7 +11,7 @@ Requires-Dist: httpx>=0.25.0
|
|
|
11
11
|
Requires-Dist: jsonschema-rs<0.30,>=0.20.0
|
|
12
12
|
Requires-Dist: langchain-core>=0.3.64
|
|
13
13
|
Requires-Dist: langgraph-checkpoint>=2.0.23
|
|
14
|
-
Requires-Dist: langgraph-runtime-inmem<0.7,>=0.6.
|
|
14
|
+
Requires-Dist: langgraph-runtime-inmem<0.7,>=0.6.9
|
|
15
15
|
Requires-Dist: langgraph-sdk>=0.2.0
|
|
16
16
|
Requires-Dist: langgraph>=0.4.0
|
|
17
17
|
Requires-Dist: langsmith>=0.3.45
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.2.124"
|
|
@@ -93,7 +93,6 @@ async def stream_run(
|
|
|
93
93
|
payload = await request.json(RunCreateStateful)
|
|
94
94
|
on_disconnect = payload.get("on_disconnect", "continue")
|
|
95
95
|
run_id = uuid6()
|
|
96
|
-
stream_mode = payload.get("stream_mode", [])
|
|
97
96
|
sub = asyncio.create_task(Runs.Stream.subscribe(run_id))
|
|
98
97
|
|
|
99
98
|
try:
|
|
@@ -118,7 +117,6 @@ async def stream_run(
|
|
|
118
117
|
thread_id=thread_id,
|
|
119
118
|
cancel_on_disconnect=on_disconnect == "cancel",
|
|
120
119
|
stream_channel=await sub,
|
|
121
|
-
stream_mode=stream_mode,
|
|
122
120
|
last_event_id=None,
|
|
123
121
|
),
|
|
124
122
|
headers={
|
|
@@ -135,7 +133,6 @@ async def stream_run_stateless(
|
|
|
135
133
|
payload = await request.json(RunCreateStateless)
|
|
136
134
|
on_disconnect = payload.get("on_disconnect", "continue")
|
|
137
135
|
run_id = uuid6()
|
|
138
|
-
stream_mode = payload.get("stream_mode", [])
|
|
139
136
|
sub = asyncio.create_task(Runs.Stream.subscribe(run_id))
|
|
140
137
|
|
|
141
138
|
try:
|
|
@@ -161,7 +158,6 @@ async def stream_run_stateless(
|
|
|
161
158
|
ignore_404=True,
|
|
162
159
|
cancel_on_disconnect=on_disconnect == "cancel",
|
|
163
160
|
stream_channel=await sub,
|
|
164
|
-
stream_mode=stream_mode,
|
|
165
161
|
last_event_id=None,
|
|
166
162
|
),
|
|
167
163
|
headers={
|
|
@@ -205,7 +201,6 @@ async def wait_run(request: ApiRequest):
|
|
|
205
201
|
run["run_id"],
|
|
206
202
|
thread_id=run["thread_id"],
|
|
207
203
|
stream_channel=await sub,
|
|
208
|
-
stream_mode=["updates", "values", "error"],
|
|
209
204
|
cancel_on_disconnect=on_disconnect == "cancel",
|
|
210
205
|
)
|
|
211
206
|
) as stream:
|
|
@@ -288,7 +283,6 @@ async def wait_run_stateless(request: ApiRequest):
|
|
|
288
283
|
run["run_id"],
|
|
289
284
|
thread_id=run["thread_id"],
|
|
290
285
|
stream_channel=await sub,
|
|
291
|
-
stream_mode=["updates", "values", "error"],
|
|
292
286
|
ignore_404=True,
|
|
293
287
|
cancel_on_disconnect=on_disconnect == "cancel",
|
|
294
288
|
)
|
|
@@ -17,6 +17,7 @@ import logging.config
|
|
|
17
17
|
import os
|
|
18
18
|
import pathlib
|
|
19
19
|
import signal
|
|
20
|
+
from contextlib import asynccontextmanager
|
|
20
21
|
|
|
21
22
|
import structlog
|
|
22
23
|
import uvloop
|
|
@@ -94,11 +95,26 @@ async def health_and_metrics_server():
|
|
|
94
95
|
|
|
95
96
|
async def entrypoint():
|
|
96
97
|
from langgraph_api import logging as lg_logging
|
|
98
|
+
from langgraph_api.api import user_router
|
|
97
99
|
|
|
98
100
|
lg_logging.set_logging_context({"entrypoint": "python-queue"})
|
|
99
101
|
tasks: set[asyncio.Task] = set()
|
|
100
102
|
tasks.add(asyncio.create_task(health_and_metrics_server()))
|
|
101
|
-
|
|
103
|
+
|
|
104
|
+
original_lifespan = user_router.router.lifespan_context if user_router else None
|
|
105
|
+
|
|
106
|
+
@asynccontextmanager
|
|
107
|
+
async def combined_lifespan(app, with_cron_scheduler=False, taskset=None):
|
|
108
|
+
async with lifespan(
|
|
109
|
+
app, with_cron_scheduler=with_cron_scheduler, taskset=taskset
|
|
110
|
+
):
|
|
111
|
+
if original_lifespan:
|
|
112
|
+
async with original_lifespan(app):
|
|
113
|
+
yield
|
|
114
|
+
else:
|
|
115
|
+
yield
|
|
116
|
+
|
|
117
|
+
async with combined_lifespan(None, with_cron_scheduler=False, taskset=tasks):
|
|
102
118
|
await asyncio.gather(*tasks)
|
|
103
119
|
|
|
104
120
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
version = 1
|
|
2
|
-
revision =
|
|
2
|
+
revision = 2
|
|
3
3
|
requires-python = ">=3.11"
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
@@ -25,16 +25,16 @@ wheels = [
|
|
|
25
25
|
|
|
26
26
|
[[package]]
|
|
27
27
|
name = "anyio"
|
|
28
|
-
version = "4.
|
|
28
|
+
version = "4.10.0"
|
|
29
29
|
source = { registry = "https://pypi.org/simple" }
|
|
30
30
|
dependencies = [
|
|
31
31
|
{ name = "idna" },
|
|
32
32
|
{ name = "sniffio" },
|
|
33
33
|
{ name = "typing-extensions", marker = "python_full_version < '3.13'" },
|
|
34
34
|
]
|
|
35
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
35
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f1/b4/636b3b65173d3ce9a38ef5f0522789614e590dab6a8d505340a4efe4c567/anyio-4.10.0.tar.gz", hash = "sha256:3f3fae35c96039744587aa5b8371e7e8e603c0702999535961dd336026973ba6", size = 213252, upload-time = "2025-08-04T08:54:26.451Z" }
|
|
36
36
|
wheels = [
|
|
37
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
37
|
+
{ url = "https://files.pythonhosted.org/packages/6f/12/e5e0282d673bb9746bacfb6e2dba8719989d3660cdb2ea79aee9a9651afb/anyio-4.10.0-py3-none-any.whl", hash = "sha256:60e474ac86736bbfd6f210f7a61218939c318f43f9972497381f1c5e930ed3d1", size = 107213, upload-time = "2025-08-04T08:54:24.882Z" },
|
|
38
38
|
]
|
|
39
39
|
|
|
40
40
|
[[package]]
|
|
@@ -51,11 +51,11 @@ wheels = [
|
|
|
51
51
|
|
|
52
52
|
[[package]]
|
|
53
53
|
name = "certifi"
|
|
54
|
-
version = "2025.
|
|
54
|
+
version = "2025.8.3"
|
|
55
55
|
source = { registry = "https://pypi.org/simple" }
|
|
56
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
56
|
+
sdist = { url = "https://files.pythonhosted.org/packages/dc/67/960ebe6bf230a96cda2e0abcf73af550ec4f090005363542f0765df162e0/certifi-2025.8.3.tar.gz", hash = "sha256:e564105f78ded564e3ae7c923924435e1daa7463faeab5bb932bc53ffae63407", size = 162386, upload-time = "2025-08-03T03:07:47.08Z" }
|
|
57
57
|
wheels = [
|
|
58
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
58
|
+
{ url = "https://files.pythonhosted.org/packages/e5/48/1549795ba7742c948d2ad169c1c8cdbae65bc450d6cd753d124b17c8cd32/certifi-2025.8.3-py3-none-any.whl", hash = "sha256:f6c12493cfb1b06ba2ff328595af9350c65d6644968e5d3a2ffd78699af217a5", size = 161216, upload-time = "2025-08-03T03:07:45.777Z" },
|
|
59
59
|
]
|
|
60
60
|
|
|
61
61
|
[[package]]
|
|
@@ -376,7 +376,7 @@ wheels = [
|
|
|
376
376
|
|
|
377
377
|
[[package]]
|
|
378
378
|
name = "langgraph"
|
|
379
|
-
version = "0.6.
|
|
379
|
+
version = "0.6.3"
|
|
380
380
|
source = { registry = "https://pypi.org/simple" }
|
|
381
381
|
dependencies = [
|
|
382
382
|
{ name = "langchain-core" },
|
|
@@ -386,9 +386,9 @@ dependencies = [
|
|
|
386
386
|
{ name = "pydantic" },
|
|
387
387
|
{ name = "xxhash" },
|
|
388
388
|
]
|
|
389
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
389
|
+
sdist = { url = "https://files.pythonhosted.org/packages/7d/d8/ecedf01b3e90ad288343eeb06d91d8511e049ee0b16d7f3c146baeed2a49/langgraph-0.6.3.tar.gz", hash = "sha256:0d2280d295133dc34ccc12eae1ad4d82ee847b009c59801de418068fa9248e1b", size = 452277, upload-time = "2025-08-03T11:21:35.74Z" }
|
|
390
390
|
wheels = [
|
|
391
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
391
|
+
{ url = "https://files.pythonhosted.org/packages/bb/93/7836486f6c18b0b11e6bde5bc0f318947e610637aa5231081bd4adf79eb9/langgraph-0.6.3-py3-none-any.whl", hash = "sha256:733efd8c59b9915e582619da40f2ab5ebb121319a4d7718adef82d6db07547eb", size = 152463, upload-time = "2025-08-03T11:21:34.002Z" },
|
|
392
392
|
]
|
|
393
393
|
|
|
394
394
|
[[package]]
|
|
@@ -517,15 +517,15 @@ wheels = [
|
|
|
517
517
|
|
|
518
518
|
[[package]]
|
|
519
519
|
name = "langgraph-prebuilt"
|
|
520
|
-
version = "0.6.
|
|
520
|
+
version = "0.6.3"
|
|
521
521
|
source = { registry = "https://pypi.org/simple" }
|
|
522
522
|
dependencies = [
|
|
523
523
|
{ name = "langchain-core" },
|
|
524
524
|
{ name = "langgraph-checkpoint" },
|
|
525
525
|
]
|
|
526
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
526
|
+
sdist = { url = "https://files.pythonhosted.org/packages/2d/6a/7f662e24eb89bf74fcf2fd109f350ec023373d196b16d12b54e66961f145/langgraph_prebuilt-0.6.3.tar.gz", hash = "sha256:5e1ca7ba98f53ce98400f34bdb0afe47f71d0167c4108b11d4aeed4c6d4a1d3d", size = 125368, upload-time = "2025-08-03T11:16:24.789Z" }
|
|
527
527
|
wheels = [
|
|
528
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
528
|
+
{ url = "https://files.pythonhosted.org/packages/9c/27/049a9e07d1d75c39e0109445e93c9df8bc4a8c51730655be561ecdf04dee/langgraph_prebuilt-0.6.3-py3-none-any.whl", hash = "sha256:cea830fc73d1a6fb871c5c6739e894bffcb7b7a07343198b56f263d3113ae8d6", size = 28917, upload-time = "2025-08-03T11:16:23.695Z" },
|
|
529
529
|
]
|
|
530
530
|
|
|
531
531
|
[[package]]
|
|
@@ -576,7 +576,7 @@ wheels = [
|
|
|
576
576
|
|
|
577
577
|
[[package]]
|
|
578
578
|
name = "langsmith"
|
|
579
|
-
version = "0.4.
|
|
579
|
+
version = "0.4.13"
|
|
580
580
|
source = { registry = "https://pypi.org/simple" }
|
|
581
581
|
dependencies = [
|
|
582
582
|
{ name = "httpx" },
|
|
@@ -587,9 +587,9 @@ dependencies = [
|
|
|
587
587
|
{ name = "requests-toolbelt" },
|
|
588
588
|
{ name = "zstandard" },
|
|
589
589
|
]
|
|
590
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
590
|
+
sdist = { url = "https://files.pythonhosted.org/packages/be/7a/a4265a1ae549cb2480dae97867dd6841edaf2b419755d307ef998fa87854/langsmith-0.4.13.tar.gz", hash = "sha256:1ae7dbb5d8150647406f49885a2dd16ab12bd990254b5dc23718838b3d086fde", size = 920911, upload-time = "2025-08-06T20:09:53.041Z" }
|
|
591
591
|
wheels = [
|
|
592
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
592
|
+
{ url = "https://files.pythonhosted.org/packages/b2/04/171205d95baa3e5e8867416ffeb90510c3f17036a96e6aa9948ba4920db0/langsmith-0.4.13-py3-none-any.whl", hash = "sha256:dab7b16ee16986995007bf5a777f45c18f8bf7453f67ae2ebcb46ce43c214297", size = 372682, upload-time = "2025-08-06T20:09:51.026Z" },
|
|
593
593
|
]
|
|
594
594
|
|
|
595
595
|
[[package]]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.2.120"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langgraph_api-0.2.120 → langgraph_api-0.2.124}/langgraph_api/js/src/utils/pythonSchemas.mts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|