langgraph-api 0.2.29__py3-none-any.whl → 0.2.30__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.
- langgraph_api/__init__.py +1 -1
- langgraph_api/queue_entrypoint.py +8 -2
- langgraph_api/server.py +8 -2
- {langgraph_api-0.2.29.dist-info → langgraph_api-0.2.30.dist-info}/METADATA +1 -1
- {langgraph_api-0.2.29.dist-info → langgraph_api-0.2.30.dist-info}/RECORD +8 -8
- {langgraph_api-0.2.29.dist-info → langgraph_api-0.2.30.dist-info}/WHEEL +0 -0
- {langgraph_api-0.2.29.dist-info → langgraph_api-0.2.30.dist-info}/entry_points.txt +0 -0
- {langgraph_api-0.2.29.dist-info → langgraph_api-0.2.30.dist-info}/licenses/LICENSE +0 -0
langgraph_api/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.2.
|
|
1
|
+
__version__ = "0.2.30"
|
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
# ruff: noqa: E402
|
|
2
|
-
import
|
|
2
|
+
import os
|
|
3
|
+
|
|
4
|
+
if not (
|
|
5
|
+
(disable_truststore := os.getenv("DISABLE_TRUSTSTORE"))
|
|
6
|
+
and disable_truststore.lower() == "true"
|
|
7
|
+
):
|
|
8
|
+
import truststore # noqa: F401
|
|
3
9
|
|
|
4
|
-
truststore.inject_into_ssl() # noqa: F401
|
|
10
|
+
truststore.inject_into_ssl() # noqa: F401
|
|
5
11
|
|
|
6
12
|
import asyncio
|
|
7
13
|
import http.server
|
langgraph_api/server.py
CHANGED
|
@@ -2,14 +2,20 @@
|
|
|
2
2
|
# ruff: noqa: E402
|
|
3
3
|
import langgraph_api.patch # noqa: F401,I001
|
|
4
4
|
import sys
|
|
5
|
+
import os
|
|
5
6
|
|
|
6
7
|
# WARNING: Keep the import above before other code runs as it
|
|
7
8
|
# patches an error in the Starlette library.
|
|
8
9
|
import logging
|
|
9
10
|
import typing
|
|
10
|
-
import truststore # noqa: F401
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
if not (
|
|
13
|
+
(disable_truststore := os.getenv("DISABLE_TRUSTSTORE"))
|
|
14
|
+
and disable_truststore.lower() == "true"
|
|
15
|
+
):
|
|
16
|
+
import truststore # noqa: F401
|
|
17
|
+
|
|
18
|
+
truststore.inject_into_ssl() # noqa: F401
|
|
13
19
|
|
|
14
20
|
from contextlib import asynccontextmanager
|
|
15
21
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
langgraph_api/__init__.py,sha256=
|
|
1
|
+
langgraph_api/__init__.py,sha256=R75QzgJ-X9Ixa6UnK5Wm3Jn0Wd9dnVdrtup0aqecq6U,23
|
|
2
2
|
langgraph_api/asgi_transport.py,sha256=eqifhHxNnxvI7jJqrY1_8RjL4Fp9NdN4prEub2FWBt8,5091
|
|
3
3
|
langgraph_api/asyncio.py,sha256=nelZwKL7iOjM5GHj1rVjiPE7igUIKLNKtc-3urxmlfo,9250
|
|
4
4
|
langgraph_api/cli.py,sha256=9Ou3tGDDY_VVLt5DFle8UviJdpI4ZigC5hElYvq2-To,14519
|
|
@@ -11,11 +11,11 @@ langgraph_api/http.py,sha256=gYbxxjY8aLnsXeJymcJ7G7Nj_yToOGpPYQqmZ1_ggfA,5240
|
|
|
11
11
|
langgraph_api/logging.py,sha256=3GSbvmXi8yWxWxJ558RE81xUEdklrPHJ4PpkxAb-35w,4428
|
|
12
12
|
langgraph_api/metadata.py,sha256=YZ2O9BpMSgDyPUc4hcw5ab6e6VMZETpoc-ml2RWgpIU,5140
|
|
13
13
|
langgraph_api/patch.py,sha256=Dgs0PXHytekX4SUL6KsjjN0hHcOtGLvv1GRGbh6PswU,1408
|
|
14
|
-
langgraph_api/queue_entrypoint.py,sha256=
|
|
14
|
+
langgraph_api/queue_entrypoint.py,sha256=_41ZveMDdn9bapjA7Ik9FG3r4hyIwXESUM5F1PdlieE,2309
|
|
15
15
|
langgraph_api/route.py,sha256=uN311KjIugyNHG3rmVw_ms61QO1W1l16jJx03rf0R_s,4630
|
|
16
16
|
langgraph_api/schema.py,sha256=2711t4PIBk5dky4gmMndrTRC9CVvAgH47C9FKDxhkBo,5444
|
|
17
17
|
langgraph_api/serde.py,sha256=8fQXg7T7RVUqj_jgOoSOJrWVpQDW0qJKjAjSsEhPHo4,4803
|
|
18
|
-
langgraph_api/server.py,sha256=
|
|
18
|
+
langgraph_api/server.py,sha256=Z_VL-kIphybTRDWBIqHMfRhgCmAFyTRqAGlgnHQF0Zg,6973
|
|
19
19
|
langgraph_api/sse.py,sha256=3jG_FZj8FI9r7xGWTqaAyDkmqf6P1NOu0EzGrcSOGYc,4033
|
|
20
20
|
langgraph_api/state.py,sha256=8jx4IoTCOjTJuwzuXJKKFwo1VseHjNnw_CCq4x1SW14,2284
|
|
21
21
|
langgraph_api/store.py,sha256=UWVpopgVjAYM2U9Ra6ZY_BmwPPlq6wfqOw7zdWnQjBU,4598
|
|
@@ -78,8 +78,8 @@ langgraph_runtime/__init__.py,sha256=O4GgSmu33c-Pr8Xzxj_brcK5vkm70iNTcyxEjICFZxA
|
|
|
78
78
|
LICENSE,sha256=ZPwVR73Biwm3sK6vR54djCrhaRiM4cAD2zvOQZV8Xis,3859
|
|
79
79
|
logging.json,sha256=3RNjSADZmDq38eHePMm1CbP6qZ71AmpBtLwCmKU9Zgo,379
|
|
80
80
|
openapi.json,sha256=ZMY9UXZJYiFK59z8QmDxVZ7LV6KonQbHzG-D5h-ZTYE,135412
|
|
81
|
-
langgraph_api-0.2.
|
|
82
|
-
langgraph_api-0.2.
|
|
83
|
-
langgraph_api-0.2.
|
|
84
|
-
langgraph_api-0.2.
|
|
85
|
-
langgraph_api-0.2.
|
|
81
|
+
langgraph_api-0.2.30.dist-info/METADATA,sha256=O5OFqZfihKkP1eKHlbey1pBYaXl7QbVVZM8buR4uBzg,3892
|
|
82
|
+
langgraph_api-0.2.30.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
83
|
+
langgraph_api-0.2.30.dist-info/entry_points.txt,sha256=hGedv8n7cgi41PypMfinwS_HfCwA7xJIfS0jAp8htV8,78
|
|
84
|
+
langgraph_api-0.2.30.dist-info/licenses/LICENSE,sha256=ZPwVR73Biwm3sK6vR54djCrhaRiM4cAD2zvOQZV8Xis,3859
|
|
85
|
+
langgraph_api-0.2.30.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|