langgraph-api 0.1.17__py3-none-any.whl → 0.1.20__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 CHANGED
@@ -1 +1 @@
1
- __version__ = "0.1.17"
1
+ __version__ = "0.1.20"
langgraph_api/api/ui.py CHANGED
@@ -60,8 +60,8 @@ async def handle_ui(request: ApiRequest) -> Response:
60
60
  elif ext == ".js":
61
61
  result.append(
62
62
  f'<script src="//{host}/ui/{graph_id}/{basename}" '
63
- f'onload=\'__LGUI_{graph_id}.render({json.dumps(message["name"])}, "{{{{shadowRootId}}}}")\'>'
64
- '</script>'
63
+ f"onload='__LGUI_{graph_id}.render({json.dumps(message['name'])}, \"{{{{shadowRootId}}}}\")'>"
64
+ "</script>"
65
65
  )
66
66
 
67
67
  return Response(content="\n".join(result), headers={"Content-Type": "text/html"})
@@ -33,6 +33,7 @@ class LangsmithAuthBackend(AuthenticationBackend):
33
33
  ("X-Api-Key", conn.headers.get("x-api-key")),
34
34
  ("X-Service-Key", conn.headers.get("x-service-key")),
35
35
  ("Cookie", conn.headers.get("cookie")),
36
+ ("X-User-Id", conn.headers.get("x-user-id")),
36
37
  ]
37
38
  if not any(h[1] for h in headers):
38
39
  raise AuthenticationError("Missing authentication headers")
@@ -181,9 +181,9 @@ def translate_pattern(pat: str) -> re.Pattern[str]:
181
181
 
182
182
 
183
183
  @functools.lru_cache(maxsize=1)
184
- def get_header_patterns() -> (
185
- tuple[list[re.Pattern[str] | None], list[re.Pattern[str] | None]]
186
- ):
184
+ def get_header_patterns() -> tuple[
185
+ list[re.Pattern[str] | None], list[re.Pattern[str] | None]
186
+ ]:
187
187
  from langgraph_api import config
188
188
 
189
189
  if not config.HTTP_CONFIG:
@@ -206,21 +206,8 @@ def get_configurable_headers(headers: dict[str, str]) -> dict[str, str]:
206
206
  configurable = {}
207
207
  include_patterns, exclude_patterns = get_header_patterns()
208
208
  for key, value in headers.items():
209
- if include_patterns and not any(
210
- pattern.match(key) for pattern in include_patterns
211
- ):
212
- continue
213
- if exclude_patterns and any(pattern.match(key) for pattern in exclude_patterns):
214
- continue
215
- if key.startswith("x-"):
216
- if key in (
217
- "x-api-key",
218
- "x-tenant-id",
219
- "x-service-key",
220
- ):
221
- continue
222
- configurable[key] = value
223
- elif key == "langsmith-trace":
209
+ # First handle tracing stuff; not configurable
210
+ if key == "langsmith-trace":
224
211
  configurable[key] = value
225
212
  if baggage := headers.get("baggage"):
226
213
  for item in baggage.split(","):
@@ -231,6 +218,23 @@ def get_configurable_headers(headers: dict[str, str]) -> dict[str, str]:
231
218
  configurable[key] = urllib.parse.unquote(value).split(",")
232
219
  elif key == LANGSMITH_PROJECT:
233
220
  configurable[key] = urllib.parse.unquote(value)
221
+ # Then handle overridable behavior
222
+ if exclude_patterns and any(pattern.match(key) for pattern in exclude_patterns):
223
+ continue
224
+ if include_patterns and any(pattern.match(key) for pattern in include_patterns):
225
+ configurable[key] = value
226
+ continue
227
+
228
+ # Then handle default behavior
229
+ if key.startswith("x-"):
230
+ if key in (
231
+ "x-api-key",
232
+ "x-tenant-id",
233
+ "x-service-key",
234
+ ):
235
+ continue
236
+ configurable[key] = value
237
+
234
238
  elif key == "user-agent":
235
239
  configurable[key] = value
236
240
  return configurable
@@ -21,7 +21,7 @@ async def thread_ttl_sweep_loop():
21
21
  strategy = thread_ttl_config.get("strategy", "delete")
22
22
  if strategy != "delete":
23
23
  raise NotImplementedError(
24
- f"Unrecognized thread deletion strategy: {strategy}." " Expected 'delete'."
24
+ f"Unrecognized thread deletion strategy: {strategy}. Expected 'delete'."
25
25
  )
26
26
  sweep_interval_minutes = thread_ttl_config.get("sweep_interval_minutes", 5)
27
27
  await logger.ainfo(
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: langgraph-api
3
- Version: 0.1.17
3
+ Version: 0.1.20
4
4
  Summary:
5
5
  License: Elastic-2.0
6
6
  Author: Nuno Campos
7
7
  Author-email: nuno@langchain.dev
8
- Requires-Python: >=3.11.0,<4.0
8
+ Requires-Python: >=3.11
9
9
  Classifier: License :: Other/Proprietary License
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3.11
@@ -15,11 +15,11 @@ Requires-Dist: cloudpickle (>=3.0.0,<4.0.0)
15
15
  Requires-Dist: cryptography (>=42.0.0,<45.0)
16
16
  Requires-Dist: httpx (>=0.25.0)
17
17
  Requires-Dist: jsonschema-rs (>=0.20.0,<0.30)
18
- Requires-Dist: langchain-core (>=0.2.38)
19
- Requires-Dist: langgraph (>=0.2.56)
20
- Requires-Dist: langgraph-checkpoint (>=2.0.23)
21
- Requires-Dist: langgraph-runtime-inmem (>=0.0.6)
22
- Requires-Dist: langgraph-sdk (>=0.1.63,<0.2.0)
18
+ Requires-Dist: langchain-core (>=0.2.38) ; python_version < "4.0"
19
+ Requires-Dist: langgraph (>=0.2.56) ; python_version < "4.0"
20
+ Requires-Dist: langgraph-checkpoint (>=2.0.23) ; python_version < "4.0"
21
+ Requires-Dist: langgraph-runtime-inmem (>=0.0.7)
22
+ Requires-Dist: langgraph-sdk (>=0.1.63,<0.2.0) ; python_version < "4.0"
23
23
  Requires-Dist: langsmith (>=0.1.63)
24
24
  Requires-Dist: orjson (>=3.9.7)
25
25
  Requires-Dist: pyjwt (>=2.9.0,<3.0.0)
@@ -1,5 +1,5 @@
1
1
  LICENSE,sha256=ZPwVR73Biwm3sK6vR54djCrhaRiM4cAD2zvOQZV8Xis,3859
2
- langgraph_api/__init__.py,sha256=BzIjnki8Bz3evNWo6bjGxxpLhy_tN9MRYhtM0MnDiWs,23
2
+ langgraph_api/__init__.py,sha256=8XalsVoLEfXslFvdtUEmkNOuYShzOzYOcFbgmOz1oSk,23
3
3
  langgraph_api/api/__init__.py,sha256=IKKMrC5gCHTzjprbg8jgZDrAJRuqJfSUgEkZAgh3l-M,5771
4
4
  langgraph_api/api/assistants.py,sha256=6oYFRKlvqheJQGbWjFhQOUnnSbvsbrdMYLRJP7WtSRo,14481
5
5
  langgraph_api/api/mcp.py,sha256=KbR19dtFCpJEiKYj3IfepAuJij8YZVELuVp7JY_yu_o,13754
@@ -8,12 +8,12 @@ langgraph_api/api/openapi.py,sha256=OGwzPpYO4e98iqtgL7UEfzI6jP4zXahJ1R-7VgOSZeg,
8
8
  langgraph_api/api/runs.py,sha256=dhHZ3xu7V0anftqzXaOYnhVEryJpVeqzu60MFiUw4u8,18010
9
9
  langgraph_api/api/store.py,sha256=G4Fm8hgFLlJUW5_ekLS_IOgCfpFy-TK9uq5r9QTOELQ,5447
10
10
  langgraph_api/api/threads.py,sha256=ogMKmEoiycuaV3fa5kpupDohJ7fwUOfVczt6-WSK4FE,9322
11
- langgraph_api/api/ui.py,sha256=kdCQ-p0voxAqIFc72aqqzdPGH2v-yEBKzjRE6cUPvpU,2201
11
+ langgraph_api/api/ui.py,sha256=kmXA270SX9JkF8_qrx1G_b3grc_SL6jEuCYpH1ZLPXE,2201
12
12
  langgraph_api/asyncio.py,sha256=h0eZ7aoDGnJpoxnHLZABVlj1jQ78UxjgiHntTmAEWek,8613
13
13
  langgraph_api/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  langgraph_api/auth/custom.py,sha256=QR49PnIfPPQZ6ygWmnMkSuAzgOpBBUbbz5kJ2yVwGmQ,21934
15
15
  langgraph_api/auth/langsmith/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- langgraph_api/auth/langsmith/backend.py,sha256=6xvxozIDSBTZtMADMqxs4BoI2EVQ4R7bQbsKak8QYCk,2706
16
+ langgraph_api/auth/langsmith/backend.py,sha256=UNsXa1rXuUJy8fdnasdILIWoxWIlHafY03YJChV0USk,2764
17
17
  langgraph_api/auth/langsmith/client.py,sha256=eKchvAom7hdkUXauD8vHNceBDDUijrFgdTV8bKd7x4Q,3998
18
18
  langgraph_api/auth/middleware.py,sha256=jDA4t41DUoAArEY_PNoXesIUBJ0nGhh85QzRdn5EPD0,1916
19
19
  langgraph_api/auth/noop.py,sha256=Bk6Nf3p8D_iMVy_OyfPlyiJp_aEwzL-sHrbxoXpCbac,586
@@ -80,7 +80,7 @@ langgraph_api/middleware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
80
80
  langgraph_api/middleware/http_logger.py,sha256=aj4mdisRobFePkD3Iy6-w_Mujwx4TQRaEhPvSd6HgLk,3284
81
81
  langgraph_api/middleware/private_network.py,sha256=eYgdyU8AzU2XJu362i1L8aSFoQRiV7_aLBPw7_EgeqI,2111
82
82
  langgraph_api/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
- langgraph_api/models/run.py,sha256=ZgIaE7fUYAllqeC7MbfXuKEzmkFnvo3O44DdXTMCTNY,12946
83
+ langgraph_api/models/run.py,sha256=MAlJMA2V7o3BMoixY5kTXdSrrpZTxcj6qV1TjCETiew,13093
84
84
  langgraph_api/patch.py,sha256=Dgs0PXHytekX4SUL6KsjjN0hHcOtGLvv1GRGbh6PswU,1408
85
85
  langgraph_api/queue_entrypoint.py,sha256=gjtajZfnDXhsi7JElfmkY-p0ENBiKBDJ4Ugiw-exapw,1839
86
86
  langgraph_api/route.py,sha256=fM4qYCGbmH0a3_cV8uKocb1sLklehxO6HhdRXqLK6OM,4421
@@ -90,7 +90,7 @@ langgraph_api/server.py,sha256=lCv_ZHLbMnhKRhdaSJi1edk-O9We-MnQafkGzdWlngw,6599
90
90
  langgraph_api/sse.py,sha256=3jG_FZj8FI9r7xGWTqaAyDkmqf6P1NOu0EzGrcSOGYc,4033
91
91
  langgraph_api/state.py,sha256=8jx4IoTCOjTJuwzuXJKKFwo1VseHjNnw_CCq4x1SW14,2284
92
92
  langgraph_api/stream.py,sha256=a4sjBm3XhHK6NC4OD1dHey53t6czKodvrlxh9rfjfSA,11718
93
- langgraph_api/thread_ttl.py,sha256=4vch4nu1UOiYcqYRd7bTHsfs0Ei_lXuy9nBQ0uVJLyo,1765
93
+ langgraph_api/thread_ttl.py,sha256=-Ox8NFHqUH3wGNdEKMIfAXUubY5WGifIgCaJ7npqLgw,1762
94
94
  langgraph_api/tunneling/cloudflare.py,sha256=iKb6tj-VWPlDchHFjuQyep2Dpb-w2NGfJKt-WJG9LH0,3650
95
95
  langgraph_api/utils.py,sha256=92mSti9GfGdMRRWyESKQW5yV-75Z9icGHnIrBYvdypU,3619
96
96
  langgraph_api/validation.py,sha256=zMuKmwUEBjBgFMwAaeLZmatwGVijKv2sOYtYg7gfRtc,4950
@@ -101,8 +101,8 @@ langgraph_license/validation.py,sha256=ZKraAVJArAABKqrmHN-EN18ncoNUmRm500Yt1Sc7t
101
101
  langgraph_runtime/__init__.py,sha256=O4GgSmu33c-Pr8Xzxj_brcK5vkm70iNTcyxEjICFZxA,1075
102
102
  logging.json,sha256=3RNjSADZmDq38eHePMm1CbP6qZ71AmpBtLwCmKU9Zgo,379
103
103
  openapi.json,sha256=cjlQFtrH7TwXQ9GNe1jy2iBRhae_F6inFZhsaCQidBc,132770
104
- langgraph_api-0.1.17.dist-info/LICENSE,sha256=ZPwVR73Biwm3sK6vR54djCrhaRiM4cAD2zvOQZV8Xis,3859
105
- langgraph_api-0.1.17.dist-info/METADATA,sha256=nXIzxwaN2vJqV-HZvcSn4M-lwjJFSgRvqM01CScbib4,4143
106
- langgraph_api-0.1.17.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
107
- langgraph_api-0.1.17.dist-info/entry_points.txt,sha256=3EYLgj89DfzqJHHYGxPH4A_fEtClvlRbWRUHaXO7hj4,77
108
- langgraph_api-0.1.17.dist-info/RECORD,,
104
+ langgraph_api-0.1.20.dist-info/LICENSE,sha256=ZPwVR73Biwm3sK6vR54djCrhaRiM4cAD2zvOQZV8Xis,3859
105
+ langgraph_api-0.1.20.dist-info/METADATA,sha256=VmXrHY0G8gs4WuohLP35c41gUw8MmQduRAfDsRaliK0,4236
106
+ langgraph_api-0.1.20.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
107
+ langgraph_api-0.1.20.dist-info/entry_points.txt,sha256=3EYLgj89DfzqJHHYGxPH4A_fEtClvlRbWRUHaXO7hj4,77
108
+ langgraph_api-0.1.20.dist-info/RECORD,,