langgraph-api 0.4.44__tar.gz → 0.4.46__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.
Potentially problematic release.
This version of langgraph-api might be problematic. Click here for more details.
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/Makefile +38 -24
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/PKG-INFO +1 -1
- langgraph_api-0.4.46/langgraph_api/__init__.py +1 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/package.json +1 -1
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/yarn.lock +4 -4
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/metadata.py +1 -1
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/server.py +16 -2
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/uv.lock +6 -6
- langgraph_api-0.4.44/langgraph_api/__init__.py +0 -1
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/.gitignore +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/LICENSE +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/README.md +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/benchmark/.gitignore +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/benchmark/Makefile +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/benchmark/README.md +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/benchmark/burst.js +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/benchmark/capacity_k6.js +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/benchmark/capacity_runner.mjs +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/benchmark/capacity_urls.mjs +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/benchmark/clean.js +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/benchmark/graphs.js +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/benchmark/package.json +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/benchmark/ramp.js +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/benchmark/reporting/dd_reporting.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/benchmark/update-revision.js +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/benchmark/weather.js +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/constraints.txt +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/forbidden.txt +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/healthcheck.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/api/__init__.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/api/a2a.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/api/assistants.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/api/mcp.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/api/meta.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/api/openapi.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/api/runs.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/api/store.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/api/threads.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/api/ui.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/asgi_transport.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/asyncio.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/auth/__init__.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/auth/custom.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/auth/langsmith/__init__.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/auth/langsmith/backend.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/auth/langsmith/client.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/auth/middleware.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/auth/noop.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/auth/studio_user.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/cli.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/command.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/config.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/cron_scheduler.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/errors.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/executor_entrypoint.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/feature_flags.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/graph.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/grpc_ops/__init__.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/grpc_ops/client.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/grpc_ops/generated/__init__.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/grpc_ops/generated/core_api_pb2.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/grpc_ops/generated/core_api_pb2.pyi +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/grpc_ops/generated/core_api_pb2_grpc.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/grpc_ops/ops.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/http.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/http_metrics.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/http_metrics_utils.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/.gitignore +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/.prettierrc +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/__init__.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/base.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/build.mts +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/client.http.mts +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/client.mts +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/errors.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/global.d.ts +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/remote.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/schema.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/src/graph.mts +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/src/load.hooks.mjs +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/src/preload.mjs +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/src/utils/files.mts +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/src/utils/importMap.mts +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/src/utils/pythonSchemas.mts +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/src/utils/serde.mts +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/sse.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/traceblock.mts +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/tsconfig.json +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/js/ui.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/logging.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/middleware/__init__.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/middleware/http_logger.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/middleware/private_network.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/middleware/request_id.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/models/__init__.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/models/run.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/patch.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/queue_entrypoint.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/route.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/schema.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/self_hosted_logs.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/self_hosted_metrics.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/serde.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/sse.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/state.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/store.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/stream.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/thread_ttl.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/traceblock.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/tunneling/cloudflare.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/utils/__init__.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/utils/cache.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/utils/config.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/utils/errors.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/utils/future.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/utils/headers.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/utils/retriable_client.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/utils/stream_codec.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/utils/uuids.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/validation.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/webhook.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/worker.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_license/__init__.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_license/validation.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_runtime/__init__.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_runtime/checkpoint.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_runtime/database.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_runtime/lifespan.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_runtime/metrics.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_runtime/ops.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_runtime/queue.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_runtime/retry.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_runtime/store.py +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/logging.json +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/openapi.json +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/pyproject.toml +0 -0
- {langgraph_api-0.4.44 → langgraph_api-0.4.46}/scripts/create_license.py +0 -0
|
@@ -74,11 +74,29 @@ unit-test:
|
|
|
74
74
|
test-auth:
|
|
75
75
|
LANGGRAPH_RUNTIME_EDITION=inmem LANGGRAPH_AUTH='{"path": "./tests/graphs/fastapi_jwt_auth.py:get_current_active_user"}' REDIS_URI=_FAKE DATABASE_URI=:memory: MIGRATIONS_PATH=__inmem__ uv run pytest -v $(AUTH_TEST)
|
|
76
76
|
|
|
77
|
-
test-auth-fastapi-jwt-before-custom-middleware:
|
|
78
|
-
LANGGRAPH_RUNTIME_EDITION=inmem LANGGRAPH_HTTP='{"app": "./tests/graphs/fastapi_jwt_middleware_ordering.py:app", "middleware_order": "auth_first"}' LANGGRAPH_AUTH='{"path": "./tests/graphs/fastapi_jwt_middleware_ordering.py:auth"}' REDIS_URI=_FAKE DATABASE_URI=:memory: MIGRATIONS_PATH=__inmem__ uv run pytest -v $(AUTH_TEST)
|
|
79
77
|
|
|
80
|
-
|
|
81
|
-
LANGGRAPH_RUNTIME_EDITION=inmem
|
|
78
|
+
define FASTAPI_JWT_AUTH_TEST
|
|
79
|
+
LANGGRAPH_RUNTIME_EDITION=inmem \
|
|
80
|
+
LANGGRAPH_AUTH='{"path": "./tests/graphs/fastapi_jwt_middleware_ordering.py:auth"}' \
|
|
81
|
+
REDIS_URI=_FAKE \
|
|
82
|
+
DATABASE_URI=:memory: \
|
|
83
|
+
MIGRATIONS_PATH=__inmem__ \
|
|
84
|
+
LANGGRAPH_HTTP='{"app": "./tests/graphs/fastapi_jwt_middleware_ordering.py:app", "middleware_order": "$(1)", "enable_custom_route_auth": $(2)}' \
|
|
85
|
+
uv run pytest -v $(AUTH_TEST)
|
|
86
|
+
endef
|
|
87
|
+
|
|
88
|
+
test-auth-fastapi-jwt--before-custom-middleware--no-custom-route-auth:
|
|
89
|
+
$(call FASTAPI_JWT_AUTH_TEST,auth_first,false)
|
|
90
|
+
|
|
91
|
+
test-auth-fastapi-jwt--after-custom-middleware--no-custom-route-auth:
|
|
92
|
+
$(call FASTAPI_JWT_AUTH_TEST,middleware_first,false)
|
|
93
|
+
|
|
94
|
+
test-auth-fastapi-jwt--before-custom-middleware--custom-route-auth:
|
|
95
|
+
$(call FASTAPI_JWT_AUTH_TEST,auth_first,true)
|
|
96
|
+
|
|
97
|
+
test-auth-fastapi-jwt--after-custom-middleware--custom-route-auth:
|
|
98
|
+
$(call FASTAPI_JWT_AUTH_TEST,middleware_first, true)
|
|
99
|
+
|
|
82
100
|
|
|
83
101
|
test-auth-watch:
|
|
84
102
|
LANGGRAPH_RUNTIME_EDITION=inmem LANGGRAPH_AUTH='{"path": "./tests/graphs/fastapi_jwt_auth.py:get_current_active_user"}' REDIS_URI=_FAKE DATABASE_URI=:memory: MIGRATIONS_PATH=__inmem__ uv run ptw . -- -x -vv --ff --capture=no $(AUTH_TEST)
|
|
@@ -153,8 +171,9 @@ start-auth-fastapi-jwt:
|
|
|
153
171
|
--reload-dir ../runtime_inmem \
|
|
154
172
|
--no-access-log
|
|
155
173
|
|
|
156
|
-
|
|
157
|
-
LANGGRAPH_RUNTIME_EDITION=inmem
|
|
174
|
+
define RUN_FASTAPI_JWT_MW_ORDERING
|
|
175
|
+
LANGGRAPH_RUNTIME_EDITION=inmem \
|
|
176
|
+
LANGGRAPH_HTTP='{"app": "./tests/graphs/fastapi_jwt_middleware_ordering.py:app", "middleware_order": "$(1)", "enable_custom_route_auth": $(2)}' \
|
|
158
177
|
N_JOBS_PER_WORKER=2 \
|
|
159
178
|
LANGSERVE_GRAPHS=$(LANGSERVE_GRAPHS_AUTH) \
|
|
160
179
|
LANGGRAPH_STORE='$(STORE_CONFIG)' \
|
|
@@ -170,25 +189,20 @@ start-auth-fastapi-jwt-before-custom-middleware:
|
|
|
170
189
|
--reload-dir langgraph_api \
|
|
171
190
|
--reload-dir ../runtime_inmem \
|
|
172
191
|
--no-access-log
|
|
192
|
+
endef
|
|
193
|
+
|
|
194
|
+
start-auth-fastapi-jwt--before-custom-middleware--no-custom-route-auth:
|
|
195
|
+
$(call RUN_FASTAPI_JWT_MW_ORDERING,auth_first,false)
|
|
196
|
+
|
|
197
|
+
start-auth-fastapi-jwt--after-custom-middleware--no-custom-route-auth:
|
|
198
|
+
$(call RUN_FASTAPI_JWT_MW_ORDERING,middleware_first,false)
|
|
199
|
+
|
|
200
|
+
start-auth-fastapi-jwt--before-custom-middleware--custom-route-auth:
|
|
201
|
+
$(call RUN_FASTAPI_JWT_MW_ORDERING,auth_first,true)
|
|
202
|
+
|
|
203
|
+
start-auth-fastapi-jwt--after-custom-middleware--custom-route-auth:
|
|
204
|
+
$(call RUN_FASTAPI_JWT_MW_ORDERING,middleware_first,true)
|
|
173
205
|
|
|
174
|
-
start-auth-fastapi-jwt-after-custom-middleware:
|
|
175
|
-
LANGGRAPH_RUNTIME_EDITION=inmem LANGGRAPH_HTTP='{"app": "./tests/graphs/fastapi_jwt_middleware_ordering.py:app", "middleware_order": "middleware_first"}' \
|
|
176
|
-
N_JOBS_PER_WORKER=2 \
|
|
177
|
-
LANGSERVE_GRAPHS=$(LANGSERVE_GRAPHS_AUTH) \
|
|
178
|
-
LANGGRAPH_STORE='$(STORE_CONFIG)' \
|
|
179
|
-
LANGGRAPH_AUTH='{"path": "./tests/graphs/fastapi_jwt_middleware_ordering.py:auth"}' \
|
|
180
|
-
LANGSMITH_LANGGRAPH_API_VARIANT=test \
|
|
181
|
-
REDIS_URI=fake \
|
|
182
|
-
DATABASE_URI=:memory: \
|
|
183
|
-
MIGRATIONS_PATH=__inmem \
|
|
184
|
-
uv run uvicorn \
|
|
185
|
-
"langgraph_api.server:app" \
|
|
186
|
-
--reload \
|
|
187
|
-
--port 9123 \
|
|
188
|
-
--reload-dir langgraph_api \
|
|
189
|
-
--reload-dir ../runtime_inmem \
|
|
190
|
-
--no-access-log
|
|
191
|
-
|
|
192
206
|
|
|
193
207
|
start-js-server:
|
|
194
208
|
@echo "Building and starting Go gRPC server..."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.4.46"
|
|
@@ -1623,10 +1623,10 @@ vite-node@3.1.4:
|
|
|
1623
1623
|
pathe "^2.0.3"
|
|
1624
1624
|
vite "^5.0.0 || ^6.0.0"
|
|
1625
1625
|
|
|
1626
|
-
"vite@^5.0.0 || ^6.0.0", vite@^6.1.6, vite@^6.
|
|
1627
|
-
version "6.
|
|
1628
|
-
resolved "https://registry.yarnpkg.com/vite/-/vite-6.
|
|
1629
|
-
integrity sha512
|
|
1626
|
+
"vite@^5.0.0 || ^6.0.0", vite@^6.1.6, vite@^6.4.1:
|
|
1627
|
+
version "6.4.1"
|
|
1628
|
+
resolved "https://registry.yarnpkg.com/vite/-/vite-6.4.1.tgz#afbe14518cdd6887e240a4b0221ab6d0ce733f96"
|
|
1629
|
+
integrity sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==
|
|
1630
1630
|
dependencies:
|
|
1631
1631
|
esbuild "^0.25.0"
|
|
1632
1632
|
fdir "^6.4.4"
|
|
@@ -61,7 +61,7 @@ NODE_COUNTER = 0
|
|
|
61
61
|
FROM_TIMESTAMP = datetime.now(UTC).isoformat()
|
|
62
62
|
|
|
63
63
|
# Beacon endpoint for license key submissions
|
|
64
|
-
BEACON_ENDPOINT = "https://
|
|
64
|
+
BEACON_ENDPOINT = "https://beacon.langchain.com/v1/beacon/metadata/submit"
|
|
65
65
|
|
|
66
66
|
# LangChain auth endpoint for API key submissions
|
|
67
67
|
LANGCHAIN_METADATA_ENDPOINT = None
|
|
@@ -151,6 +151,9 @@ custom_middleware = (
|
|
|
151
151
|
auth_before_custom_middleware = (
|
|
152
152
|
config.HTTP_CONFIG and config.HTTP_CONFIG.get("middleware_order") == "auth_first"
|
|
153
153
|
)
|
|
154
|
+
enable_auth_on_custom_routes = config.HTTP_CONFIG and config.HTTP_CONFIG.get(
|
|
155
|
+
"enable_custom_route_auth"
|
|
156
|
+
)
|
|
154
157
|
# Custom middleware to be applied at the route/mount level, not globally (app level).
|
|
155
158
|
route_level_custom_middleware = (
|
|
156
159
|
custom_middleware if auth_before_custom_middleware else []
|
|
@@ -186,11 +189,22 @@ if user_router:
|
|
|
186
189
|
# custom middleware before *or* after authentication middleware,
|
|
187
190
|
# depending on the `middleware_order` config.
|
|
188
191
|
user_app = apply_middleware(
|
|
189
|
-
routes=app.routes,
|
|
192
|
+
routes=app.routes,
|
|
193
|
+
middleware=(
|
|
194
|
+
middleware_for_protected_routes if enable_auth_on_custom_routes else []
|
|
195
|
+
)
|
|
196
|
+
+ route_level_custom_middleware,
|
|
190
197
|
)
|
|
191
198
|
app.user_middleware = global_middleware
|
|
192
199
|
else:
|
|
193
|
-
user_app =
|
|
200
|
+
user_app = (
|
|
201
|
+
apply_middleware(
|
|
202
|
+
routes=app.routes,
|
|
203
|
+
middleware=middleware_for_protected_routes,
|
|
204
|
+
)
|
|
205
|
+
if enable_auth_on_custom_routes
|
|
206
|
+
else app.routes
|
|
207
|
+
)
|
|
194
208
|
app.user_middleware = custom_middleware + global_middleware
|
|
195
209
|
|
|
196
210
|
app.router.routes = (
|
|
@@ -492,11 +492,11 @@ wheels = [
|
|
|
492
492
|
|
|
493
493
|
[[package]]
|
|
494
494
|
name = "iniconfig"
|
|
495
|
-
version = "2.
|
|
495
|
+
version = "2.3.0"
|
|
496
496
|
source = { registry = "https://pypi.org/simple" }
|
|
497
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
497
|
+
sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" }
|
|
498
498
|
wheels = [
|
|
499
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
499
|
+
{ url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" },
|
|
500
500
|
]
|
|
501
501
|
|
|
502
502
|
[[package]]
|
|
@@ -1609,15 +1609,15 @@ wheels = [
|
|
|
1609
1609
|
|
|
1610
1610
|
[[package]]
|
|
1611
1611
|
name = "uvicorn"
|
|
1612
|
-
version = "0.
|
|
1612
|
+
version = "0.38.0"
|
|
1613
1613
|
source = { registry = "https://pypi.org/simple" }
|
|
1614
1614
|
dependencies = [
|
|
1615
1615
|
{ name = "click" },
|
|
1616
1616
|
{ name = "h11" },
|
|
1617
1617
|
]
|
|
1618
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1618
|
+
sdist = { url = "https://files.pythonhosted.org/packages/cb/ce/f06b84e2697fef4688ca63bdb2fdf113ca0a3be33f94488f2cadb690b0cf/uvicorn-0.38.0.tar.gz", hash = "sha256:fd97093bdd120a2609fc0d3afe931d4d4ad688b6e75f0f929fde1bc36fe0e91d", size = 80605, upload-time = "2025-10-18T13:46:44.63Z" }
|
|
1619
1619
|
wheels = [
|
|
1620
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1620
|
+
{ url = "https://files.pythonhosted.org/packages/ee/d9/d88e73ca598f4f6ff671fb5fde8a32925c2e08a637303a1d12883c7305fa/uvicorn-0.38.0-py3-none-any.whl", hash = "sha256:48c0afd214ceb59340075b4a052ea1ee91c16fbc2a9b1469cca0e54566977b02", size = 68109, upload-time = "2025-10-18T13:46:42.958Z" },
|
|
1621
1621
|
]
|
|
1622
1622
|
|
|
1623
1623
|
[[package]]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.4.44"
|
|
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.4.44 → langgraph_api-0.4.46}/langgraph_api/grpc_ops/generated/core_api_pb2.py
RENAMED
|
File without changes
|
{langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/grpc_ops/generated/core_api_pb2.pyi
RENAMED
|
File without changes
|
{langgraph_api-0.4.44 → langgraph_api-0.4.46}/langgraph_api/grpc_ops/generated/core_api_pb2_grpc.py
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
|
|
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
|