langgraph-api 0.12.0.dev16__py3-none-any.whl → 0.12.0.dev18__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.
- langgraph_api/__init__.py +1 -1
- langgraph_api/api/meta.py +1 -0
- langgraph_api/grpc/ops/runs.py +7 -0
- langgraph_api/js/package.json +16 -16
- langgraph_api/js/yarn.lock +261 -258
- langgraph_api/models/run.py +7 -0
- langgraph_api/schema.py +3 -0
- langgraph_api/tracing_session.py +22 -0
- {langgraph_api-0.12.0.dev16.dist-info → langgraph_api-0.12.0.dev18.dist-info}/METADATA +1 -1
- {langgraph_api-0.12.0.dev16.dist-info → langgraph_api-0.12.0.dev18.dist-info}/RECORD +20 -19
- langgraph_grpc_common/conversion/store.py +236 -2
- langgraph_grpc_common/proto/core_api_pb2.py +120 -120
- langgraph_grpc_common/proto/core_api_pb2.pyi +17 -5
- langgraph_grpc_common/proto/store_pb2.py +43 -15
- langgraph_grpc_common/proto/store_pb2.pyi +414 -8
- langgraph_grpc_common/store.py +16 -16
- openapi.json +8 -1
- {langgraph_api-0.12.0.dev16.dist-info → langgraph_api-0.12.0.dev18.dist-info}/WHEEL +0 -0
- {langgraph_api-0.12.0.dev16.dist-info → langgraph_api-0.12.0.dev18.dist-info}/entry_points.txt +0 -0
- {langgraph_api-0.12.0.dev16.dist-info → langgraph_api-0.12.0.dev18.dist-info}/licenses/LICENSE +0 -0
langgraph_api/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.12.0.
|
|
1
|
+
__version__ = "0.12.0.dev18"
|
langgraph_api/api/meta.py
CHANGED
langgraph_api/grpc/ops/runs.py
CHANGED
|
@@ -383,6 +383,9 @@ def proto_to_run(proto_run: pb.Run) -> Run:
|
|
|
383
383
|
"multitask_strategy": MULTITASK_STRATEGY_FROM_PB.get(
|
|
384
384
|
proto_run.multitask_strategy
|
|
385
385
|
),
|
|
386
|
+
"langsmith_session_name": proto_run.langsmith_session_name
|
|
387
|
+
if proto_run.HasField("langsmith_session_name")
|
|
388
|
+
else None,
|
|
386
389
|
}
|
|
387
390
|
|
|
388
391
|
|
|
@@ -588,6 +591,7 @@ class Runs(Authenticated):
|
|
|
588
591
|
if_not_exists: IfNotExists = "reject",
|
|
589
592
|
after_seconds: int = 0,
|
|
590
593
|
ctx: Any = None,
|
|
594
|
+
langsmith_session_name: str | None = None,
|
|
591
595
|
) -> AsyncIterator[Run]:
|
|
592
596
|
"""Create a run."""
|
|
593
597
|
metadata = metadata or {}
|
|
@@ -662,6 +666,9 @@ class Runs(Authenticated):
|
|
|
662
666
|
if after_seconds > 0:
|
|
663
667
|
request_kwargs["after_seconds"] = int(after_seconds)
|
|
664
668
|
|
|
669
|
+
if langsmith_session_name is not None:
|
|
670
|
+
request_kwargs["langsmith_session_name"] = langsmith_session_name
|
|
671
|
+
|
|
665
672
|
# Build encryption context for Go layer
|
|
666
673
|
enc_ctx = build_encryption_context("run")
|
|
667
674
|
if enc_ctx is not None:
|
langgraph_api/js/package.json
CHANGED
|
@@ -7,28 +7,28 @@
|
|
|
7
7
|
"format": "prettier --write ."
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@hono/node-server": "^2.0.
|
|
11
|
-
"@hono/zod-validator": "^0.
|
|
12
|
-
"@langchain/core": "^1.1
|
|
13
|
-
"@langchain/langgraph": "^1.
|
|
10
|
+
"@hono/node-server": "^2.0.6",
|
|
11
|
+
"@hono/zod-validator": "^0.8.0",
|
|
12
|
+
"@langchain/core": "^1.2.1",
|
|
13
|
+
"@langchain/langgraph": "^1.4.5",
|
|
14
14
|
"@langchain/langgraph-api": "^1.0.3",
|
|
15
15
|
"@langchain/langgraph-checkpoint": "^1.0.0",
|
|
16
|
-
"@langchain/langgraph-ui": "^1.
|
|
16
|
+
"@langchain/langgraph-ui": "^1.4.0",
|
|
17
17
|
"@types/json-schema": "^7.0.15",
|
|
18
18
|
"@typescript/vfs": "^1.6.4",
|
|
19
19
|
"dedent": "^1.7.2",
|
|
20
20
|
"esbuild": "^0.28.1",
|
|
21
21
|
"exit-hook": "^5.1.0",
|
|
22
|
-
"hono": "^4.12.
|
|
23
|
-
"p-queue": "^9.0
|
|
22
|
+
"hono": "^4.12.27",
|
|
23
|
+
"p-queue": "^9.3.0",
|
|
24
24
|
"p-retry": "^7.1.1",
|
|
25
|
-
"tsx": "^4.
|
|
25
|
+
"tsx": "^4.22.4",
|
|
26
26
|
"typescript": "^5.9.3",
|
|
27
27
|
"undici": "^7.28.0",
|
|
28
|
-
"uuid": "^14.0.
|
|
29
|
-
"vite": "^8.0
|
|
28
|
+
"uuid": "^14.0.1",
|
|
29
|
+
"vite": "^8.1.0",
|
|
30
30
|
"winston": "^3.19.0",
|
|
31
|
-
"zod": "^4.3
|
|
31
|
+
"zod": "^4.4.3"
|
|
32
32
|
},
|
|
33
33
|
"resolutions": {
|
|
34
34
|
"esbuild": "^0.28.1",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@langchain/langgraph-sdk": "^1.5.4",
|
|
40
40
|
"@types/node": "^25.5.0",
|
|
41
|
-
"@types/react": "^19.2.
|
|
41
|
+
"@types/react": "^19.2.17",
|
|
42
42
|
"@types/react-dom": "^19.2.3",
|
|
43
|
-
"jose": "^6.2.
|
|
44
|
-
"postgres": "^3.4.
|
|
45
|
-
"prettier": "^3.8.
|
|
46
|
-
"vitest": "^4.1.
|
|
43
|
+
"jose": "^6.2.3",
|
|
44
|
+
"postgres": "^3.4.9",
|
|
45
|
+
"prettier": "^3.8.4",
|
|
46
|
+
"vitest": "^4.1.9"
|
|
47
47
|
},
|
|
48
48
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
49
49
|
}
|