securevector-sdk-langgraph 1.0.0__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.
- securevector_sdk_langgraph-1.0.0/LICENSE +202 -0
- securevector_sdk_langgraph-1.0.0/NOTICE +15 -0
- securevector_sdk_langgraph-1.0.0/PKG-INFO +150 -0
- securevector_sdk_langgraph-1.0.0/README.md +125 -0
- securevector_sdk_langgraph-1.0.0/pyproject.toml +50 -0
- securevector_sdk_langgraph-1.0.0/setup.cfg +4 -0
- securevector_sdk_langgraph-1.0.0/src/securevector_sdk_langgraph/__init__.py +56 -0
- securevector_sdk_langgraph-1.0.0/src/securevector_sdk_langgraph/_version.py +7 -0
- securevector_sdk_langgraph-1.0.0/src/securevector_sdk_langgraph/auto.py +37 -0
- securevector_sdk_langgraph-1.0.0/src/securevector_sdk_langgraph/client.py +223 -0
- securevector_sdk_langgraph-1.0.0/src/securevector_sdk_langgraph/config.py +54 -0
- securevector_sdk_langgraph-1.0.0/src/securevector_sdk_langgraph/core.py +180 -0
- securevector_sdk_langgraph-1.0.0/src/securevector_sdk_langgraph/errors.py +26 -0
- securevector_sdk_langgraph-1.0.0/src/securevector_sdk_langgraph/handler.py +92 -0
- securevector_sdk_langgraph-1.0.0/src/securevector_sdk_langgraph/middleware.py +109 -0
- securevector_sdk_langgraph-1.0.0/src/securevector_sdk_langgraph/tool_id.py +39 -0
- securevector_sdk_langgraph-1.0.0/src/securevector_sdk_langgraph.egg-info/PKG-INFO +150 -0
- securevector_sdk_langgraph-1.0.0/src/securevector_sdk_langgraph.egg-info/SOURCES.txt +24 -0
- securevector_sdk_langgraph-1.0.0/src/securevector_sdk_langgraph.egg-info/dependency_links.txt +1 -0
- securevector_sdk_langgraph-1.0.0/src/securevector_sdk_langgraph.egg-info/requires.txt +6 -0
- securevector_sdk_langgraph-1.0.0/src/securevector_sdk_langgraph.egg-info/top_level.txt +1 -0
- securevector_sdk_langgraph-1.0.0/tests/test_analyze.py +58 -0
- securevector_sdk_langgraph-1.0.0/tests/test_interceptor.py +132 -0
- securevector_sdk_langgraph-1.0.0/tests/test_middleware.py +83 -0
- securevector_sdk_langgraph-1.0.0/tests/test_tool_id.py +27 -0
- securevector_sdk_langgraph-1.0.0/tests/test_verdict.py +56 -0
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
SecureVector SDK for LangGraph
|
|
2
|
+
Copyright (c) SecureVector
|
|
3
|
+
|
|
4
|
+
This product is licensed under the Apache License, Version 2.0 (see LICENSE).
|
|
5
|
+
|
|
6
|
+
This software integrates with the LangGraph framework via its public callback
|
|
7
|
+
API. "LangGraph" and "LangChain" are trademarks of LangChain, Inc. This
|
|
8
|
+
package is an independent, community integration and is not affiliated with,
|
|
9
|
+
sponsored by, or endorsed by LangChain, Inc. The framework name is used only
|
|
10
|
+
descriptively to identify compatibility (nominative fair use).
|
|
11
|
+
|
|
12
|
+
This package depends on:
|
|
13
|
+
- securevector-ai-monitor (the local SecureVector app + SDK)
|
|
14
|
+
- langgraph (MIT, (c) LangChain, Inc.)
|
|
15
|
+
- langchain-core (Apache-2.0, (c) LangChain, Inc.)
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: securevector-sdk-langgraph
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: SecureVector SDK for LangGraph — brings the local threat monitor's three controls (tool-call permissions, secret/data-leak detection, threat detection) to every LangGraph tool call, with tamper-evident audit logging.
|
|
5
|
+
Author: SecureVector
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://securevector.io
|
|
8
|
+
Project-URL: Source, https://github.com/Secure-Vector/securevector-sdk-langgraph
|
|
9
|
+
Keywords: langgraph,langchain,llm,security,ai-agent,audit,compliance,tool-permissions
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Topic :: Security
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
License-File: LICENSE
|
|
18
|
+
License-File: NOTICE
|
|
19
|
+
Requires-Dist: securevector-ai-monitor>=4.7
|
|
20
|
+
Requires-Dist: langgraph>=1.0
|
|
21
|
+
Requires-Dist: langchain>=1.0
|
|
22
|
+
Provides-Extra: dev
|
|
23
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
24
|
+
Dynamic: license-file
|
|
25
|
+
|
|
26
|
+
# SecureVector SDK for LangGraph
|
|
27
|
+
|
|
28
|
+
[](https://pypi.org/project/securevector-sdk-langgraph/)
|
|
29
|
+
[](https://pypistats.org/packages/securevector-sdk-langgraph)
|
|
30
|
+
[](https://pypi.org/project/securevector-sdk-langgraph/)
|
|
31
|
+
[](LICENSE)
|
|
32
|
+
|
|
33
|
+
> Bring the SecureVector local threat monitor's three controls — **tool-call
|
|
34
|
+
> permissions**, **secret / data-leak detection**, and **threat detection** —
|
|
35
|
+
> to every LangGraph tool call, with tamper-evident audit logging. One import.
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
pip install securevector-sdk-langgraph
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
> 📦 **One install — batteries included.** `pip install securevector-sdk-langgraph`
|
|
42
|
+
> **also installs the local SecureVector app** (`securevector-ai-monitor`): the
|
|
43
|
+
> adapter **and** the detection engine + tamper-evident audit chain arrive in a
|
|
44
|
+
> single `pip install`. The SDK is a thin interception layer — **the app must be
|
|
45
|
+
> running locally** (`securevector-app --web`) for it to do anything.
|
|
46
|
+
|
|
47
|
+
## Quick start
|
|
48
|
+
|
|
49
|
+
**Enforcement (recommended)** — the documented `wrap_tool_call` middleware,
|
|
50
|
+
accepted by the langgraph-backed `create_agent` (note:
|
|
51
|
+
`langgraph.prebuilt.create_react_agent` does **not** take a `middleware`
|
|
52
|
+
argument — use `create_agent`):
|
|
53
|
+
|
|
54
|
+
```python
|
|
55
|
+
from securevector_sdk_langgraph import secure_middleware
|
|
56
|
+
from langchain.agents import create_agent
|
|
57
|
+
|
|
58
|
+
agent = create_agent(
|
|
59
|
+
model, tools,
|
|
60
|
+
middleware=[secure_middleware(mode="enforce")],
|
|
61
|
+
)
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
A denied tool is short-circuited with a `ToolMessage` before it runs — no
|
|
65
|
+
exceptions, no crashed graph.
|
|
66
|
+
|
|
67
|
+
**Observe-only logging** for any graph (passes through `langchain-core`'s
|
|
68
|
+
callback manager):
|
|
69
|
+
|
|
70
|
+
```python
|
|
71
|
+
from securevector_sdk_langgraph import SecureVectorCallbackHandler
|
|
72
|
+
|
|
73
|
+
graph.invoke(state, config={"callbacks": [SecureVectorCallbackHandler()]})
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
**Raw `StateGraph` with custom tool nodes** (no middleware surface): gate the
|
|
77
|
+
tool with LangGraph's documented `interrupt()` for human/programmatic approval:
|
|
78
|
+
|
|
79
|
+
```python
|
|
80
|
+
from langgraph.types import interrupt
|
|
81
|
+
|
|
82
|
+
@tool
|
|
83
|
+
def run_query(sql: str):
|
|
84
|
+
interrupt({"action": "run_query", "args": {"sql": sql}}) # pause for approval
|
|
85
|
+
...
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
> Why these paths? LangGraph **callbacks are observability-only** — they cannot
|
|
89
|
+
> cleanly block a tool. The **`wrap_tool_call` middleware** (for `create_agent`)
|
|
90
|
+
> and **`interrupt()`** (for raw graphs) are the documented gates.
|
|
91
|
+
|
|
92
|
+
## What happens on every tool call
|
|
93
|
+
|
|
94
|
+
Before a tool node runs, the SDK:
|
|
95
|
+
|
|
96
|
+
1. **(a) Permissions** — resolves an allow/block verdict for the tool, using the
|
|
97
|
+
app's own precedence: cloud-pushed **synced** policy → local **override** →
|
|
98
|
+
**essential** registry → default-allow.
|
|
99
|
+
2. **(b)+(c) Secret & threat scan** — sends the serialized tool input through the
|
|
100
|
+
app's `/analyze` pipeline.
|
|
101
|
+
|
|
102
|
+
After the tool returns, the result is scanned the same way to catch secrets /
|
|
103
|
+
exfiltration in tool output. Every decision is written to the app's audit chain
|
|
104
|
+
tagged `runtime_kind="langgraph"`.
|
|
105
|
+
|
|
106
|
+
## observe vs enforce
|
|
107
|
+
|
|
108
|
+
| | local app reachable | local app unreachable |
|
|
109
|
+
|---|---|---|
|
|
110
|
+
| **observe** (default) | log + advisory verdict; tool always runs | tool runs (fail-open) |
|
|
111
|
+
| **enforce** (opt-in) | tool runs only if the verdict ≠ block | **tool denied** (fail-closed) |
|
|
112
|
+
|
|
113
|
+
```python
|
|
114
|
+
agent = create_agent(model, tools, middleware=[secure_middleware(mode="enforce")])
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
Enforce mode prints a one-time disclosure to stderr. (Enforcement requires the
|
|
118
|
+
middleware or `interrupt()` path; the observe callback handler always logs only.)
|
|
119
|
+
|
|
120
|
+
## Configuration
|
|
121
|
+
|
|
122
|
+
All optional, via env or `install(...)` kwargs:
|
|
123
|
+
|
|
124
|
+
| Env var | Default | Meaning |
|
|
125
|
+
|---|---|---|
|
|
126
|
+
| `SECUREVECTOR_SDK_APP_URL` | `http://127.0.0.1:8741` | local app base URL |
|
|
127
|
+
| `SECUREVECTOR_SDK_MODE` | `observe` | `observe` or `enforce` |
|
|
128
|
+
| `SECUREVECTOR_SDK_TIMEOUT_MS` | `3000` | per-call verdict timeout |
|
|
129
|
+
| `SECUREVECTOR_SDK_RISK_THRESHOLD` | `70` | risk score that blocks in enforce mode |
|
|
130
|
+
| `SECUREVECTOR_SDK_DISABLED` | _(unset)_ | set truthy to no-op |
|
|
131
|
+
|
|
132
|
+
## Compliance
|
|
133
|
+
|
|
134
|
+
The tool-call-level, attributed, tamper-evident audit trail this produces is
|
|
135
|
+
exactly the **action-layer logging** auditors ask for under **EU AI Act
|
|
136
|
+
Art. 12 / 15**. This SDK produces the local evidence; the cloud governance
|
|
137
|
+
surface turns it into an auditor-ready pack.
|
|
138
|
+
|
|
139
|
+
## Trademarks
|
|
140
|
+
|
|
141
|
+
**SecureVector** is the product name of this SDK. **LangGraph** and
|
|
142
|
+
**LangChain** are trademarks of LangChain, Inc. This is an independent,
|
|
143
|
+
community SDK that *integrates with* LangGraph via its public callback API. It
|
|
144
|
+
is **not affiliated with, sponsored by, or endorsed by LangChain, Inc.** The
|
|
145
|
+
name uses "langgraph" only descriptively, to identify the framework this
|
|
146
|
+
package works with (nominative fair use).
|
|
147
|
+
|
|
148
|
+
## License
|
|
149
|
+
|
|
150
|
+
Apache-2.0. See [LICENSE](LICENSE) and [NOTICE](NOTICE).
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
# SecureVector SDK for LangGraph
|
|
2
|
+
|
|
3
|
+
[](https://pypi.org/project/securevector-sdk-langgraph/)
|
|
4
|
+
[](https://pypistats.org/packages/securevector-sdk-langgraph)
|
|
5
|
+
[](https://pypi.org/project/securevector-sdk-langgraph/)
|
|
6
|
+
[](LICENSE)
|
|
7
|
+
|
|
8
|
+
> Bring the SecureVector local threat monitor's three controls — **tool-call
|
|
9
|
+
> permissions**, **secret / data-leak detection**, and **threat detection** —
|
|
10
|
+
> to every LangGraph tool call, with tamper-evident audit logging. One import.
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
pip install securevector-sdk-langgraph
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
> 📦 **One install — batteries included.** `pip install securevector-sdk-langgraph`
|
|
17
|
+
> **also installs the local SecureVector app** (`securevector-ai-monitor`): the
|
|
18
|
+
> adapter **and** the detection engine + tamper-evident audit chain arrive in a
|
|
19
|
+
> single `pip install`. The SDK is a thin interception layer — **the app must be
|
|
20
|
+
> running locally** (`securevector-app --web`) for it to do anything.
|
|
21
|
+
|
|
22
|
+
## Quick start
|
|
23
|
+
|
|
24
|
+
**Enforcement (recommended)** — the documented `wrap_tool_call` middleware,
|
|
25
|
+
accepted by the langgraph-backed `create_agent` (note:
|
|
26
|
+
`langgraph.prebuilt.create_react_agent` does **not** take a `middleware`
|
|
27
|
+
argument — use `create_agent`):
|
|
28
|
+
|
|
29
|
+
```python
|
|
30
|
+
from securevector_sdk_langgraph import secure_middleware
|
|
31
|
+
from langchain.agents import create_agent
|
|
32
|
+
|
|
33
|
+
agent = create_agent(
|
|
34
|
+
model, tools,
|
|
35
|
+
middleware=[secure_middleware(mode="enforce")],
|
|
36
|
+
)
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
A denied tool is short-circuited with a `ToolMessage` before it runs — no
|
|
40
|
+
exceptions, no crashed graph.
|
|
41
|
+
|
|
42
|
+
**Observe-only logging** for any graph (passes through `langchain-core`'s
|
|
43
|
+
callback manager):
|
|
44
|
+
|
|
45
|
+
```python
|
|
46
|
+
from securevector_sdk_langgraph import SecureVectorCallbackHandler
|
|
47
|
+
|
|
48
|
+
graph.invoke(state, config={"callbacks": [SecureVectorCallbackHandler()]})
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
**Raw `StateGraph` with custom tool nodes** (no middleware surface): gate the
|
|
52
|
+
tool with LangGraph's documented `interrupt()` for human/programmatic approval:
|
|
53
|
+
|
|
54
|
+
```python
|
|
55
|
+
from langgraph.types import interrupt
|
|
56
|
+
|
|
57
|
+
@tool
|
|
58
|
+
def run_query(sql: str):
|
|
59
|
+
interrupt({"action": "run_query", "args": {"sql": sql}}) # pause for approval
|
|
60
|
+
...
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
> Why these paths? LangGraph **callbacks are observability-only** — they cannot
|
|
64
|
+
> cleanly block a tool. The **`wrap_tool_call` middleware** (for `create_agent`)
|
|
65
|
+
> and **`interrupt()`** (for raw graphs) are the documented gates.
|
|
66
|
+
|
|
67
|
+
## What happens on every tool call
|
|
68
|
+
|
|
69
|
+
Before a tool node runs, the SDK:
|
|
70
|
+
|
|
71
|
+
1. **(a) Permissions** — resolves an allow/block verdict for the tool, using the
|
|
72
|
+
app's own precedence: cloud-pushed **synced** policy → local **override** →
|
|
73
|
+
**essential** registry → default-allow.
|
|
74
|
+
2. **(b)+(c) Secret & threat scan** — sends the serialized tool input through the
|
|
75
|
+
app's `/analyze` pipeline.
|
|
76
|
+
|
|
77
|
+
After the tool returns, the result is scanned the same way to catch secrets /
|
|
78
|
+
exfiltration in tool output. Every decision is written to the app's audit chain
|
|
79
|
+
tagged `runtime_kind="langgraph"`.
|
|
80
|
+
|
|
81
|
+
## observe vs enforce
|
|
82
|
+
|
|
83
|
+
| | local app reachable | local app unreachable |
|
|
84
|
+
|---|---|---|
|
|
85
|
+
| **observe** (default) | log + advisory verdict; tool always runs | tool runs (fail-open) |
|
|
86
|
+
| **enforce** (opt-in) | tool runs only if the verdict ≠ block | **tool denied** (fail-closed) |
|
|
87
|
+
|
|
88
|
+
```python
|
|
89
|
+
agent = create_agent(model, tools, middleware=[secure_middleware(mode="enforce")])
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
Enforce mode prints a one-time disclosure to stderr. (Enforcement requires the
|
|
93
|
+
middleware or `interrupt()` path; the observe callback handler always logs only.)
|
|
94
|
+
|
|
95
|
+
## Configuration
|
|
96
|
+
|
|
97
|
+
All optional, via env or `install(...)` kwargs:
|
|
98
|
+
|
|
99
|
+
| Env var | Default | Meaning |
|
|
100
|
+
|---|---|---|
|
|
101
|
+
| `SECUREVECTOR_SDK_APP_URL` | `http://127.0.0.1:8741` | local app base URL |
|
|
102
|
+
| `SECUREVECTOR_SDK_MODE` | `observe` | `observe` or `enforce` |
|
|
103
|
+
| `SECUREVECTOR_SDK_TIMEOUT_MS` | `3000` | per-call verdict timeout |
|
|
104
|
+
| `SECUREVECTOR_SDK_RISK_THRESHOLD` | `70` | risk score that blocks in enforce mode |
|
|
105
|
+
| `SECUREVECTOR_SDK_DISABLED` | _(unset)_ | set truthy to no-op |
|
|
106
|
+
|
|
107
|
+
## Compliance
|
|
108
|
+
|
|
109
|
+
The tool-call-level, attributed, tamper-evident audit trail this produces is
|
|
110
|
+
exactly the **action-layer logging** auditors ask for under **EU AI Act
|
|
111
|
+
Art. 12 / 15**. This SDK produces the local evidence; the cloud governance
|
|
112
|
+
surface turns it into an auditor-ready pack.
|
|
113
|
+
|
|
114
|
+
## Trademarks
|
|
115
|
+
|
|
116
|
+
**SecureVector** is the product name of this SDK. **LangGraph** and
|
|
117
|
+
**LangChain** are trademarks of LangChain, Inc. This is an independent,
|
|
118
|
+
community SDK that *integrates with* LangGraph via its public callback API. It
|
|
119
|
+
is **not affiliated with, sponsored by, or endorsed by LangChain, Inc.** The
|
|
120
|
+
name uses "langgraph" only descriptively, to identify the framework this
|
|
121
|
+
package works with (nominative fair use).
|
|
122
|
+
|
|
123
|
+
## License
|
|
124
|
+
|
|
125
|
+
Apache-2.0. See [LICENSE](LICENSE) and [NOTICE](NOTICE).
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
# PyPI distribution name. Import name is `securevector_sdk_langgraph`.
|
|
7
|
+
# Brand-led, framework-suffixed — descriptive nominative-fair-use naming, NOT
|
|
8
|
+
# the `langgraph-*` / `langchain-*` prefix namespaces used by LangChain Inc.'s
|
|
9
|
+
# own packages. See README "Trademarks".
|
|
10
|
+
name = "securevector-sdk-langgraph"
|
|
11
|
+
version = "1.0.0"
|
|
12
|
+
description = "SecureVector SDK for LangGraph — brings the local threat monitor's three controls (tool-call permissions, secret/data-leak detection, threat detection) to every LangGraph tool call, with tamper-evident audit logging."
|
|
13
|
+
readme = "README.md"
|
|
14
|
+
requires-python = ">=3.10"
|
|
15
|
+
license = { text = "Apache-2.0" }
|
|
16
|
+
authors = [{ name = "SecureVector" }]
|
|
17
|
+
keywords = ["langgraph", "langchain", "llm", "security", "ai-agent", "audit", "compliance", "tool-permissions"]
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 5 - Production/Stable",
|
|
20
|
+
"Intended Audience :: Developers",
|
|
21
|
+
"License :: OSI Approved :: Apache Software License",
|
|
22
|
+
"Programming Language :: Python :: 3",
|
|
23
|
+
"Topic :: Security",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
# Enforcement uses the documented `wrap_tool_call` middleware (shared with
|
|
27
|
+
# LangChain v1's create_agent); observe-mode logging uses langchain-core's
|
|
28
|
+
# callback handler propagated through the graph. Deps:
|
|
29
|
+
# - securevector-ai-monitor: the local app + shipped SecureVectorClient
|
|
30
|
+
# (detection engine + tamper-evident audit chain live there). One
|
|
31
|
+
# `pip install securevector-sdk-langgraph` brings the adapter AND the app.
|
|
32
|
+
# - langgraph + langchain v1: the frameworks we hook (middleware + callbacks).
|
|
33
|
+
dependencies = [
|
|
34
|
+
"securevector-ai-monitor>=4.7",
|
|
35
|
+
"langgraph>=1.0",
|
|
36
|
+
"langchain>=1.0",
|
|
37
|
+
]
|
|
38
|
+
|
|
39
|
+
[project.optional-dependencies]
|
|
40
|
+
dev = [
|
|
41
|
+
"pytest>=7.0",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[project.urls]
|
|
45
|
+
Homepage = "https://securevector.io"
|
|
46
|
+
Source = "https://github.com/Secure-Vector/securevector-sdk-langgraph"
|
|
47
|
+
|
|
48
|
+
[tool.setuptools.packages.find]
|
|
49
|
+
where = ["src"]
|
|
50
|
+
exclude = ["tests*"]
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"""SecureVector SDK for LangGraph.
|
|
2
|
+
|
|
3
|
+
Enforcement (recommended) — the ``wrap_tool_call`` middleware, accepted by the
|
|
4
|
+
langgraph-backed ``create_agent`` (note: ``langgraph.prebuilt.create_react_agent``
|
|
5
|
+
does NOT take a ``middleware`` argument — use ``create_agent``)::
|
|
6
|
+
|
|
7
|
+
from securevector_sdk_langgraph import secure_middleware
|
|
8
|
+
from langchain.agents import create_agent
|
|
9
|
+
|
|
10
|
+
agent = create_agent(
|
|
11
|
+
model, tools,
|
|
12
|
+
middleware=[secure_middleware(mode="enforce")],
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
Observe-only logging (any graph) — pass the callback handler in config::
|
|
16
|
+
|
|
17
|
+
from securevector_sdk_langgraph import SecureVectorCallbackHandler
|
|
18
|
+
graph.invoke(state, config={"callbacks": [SecureVectorCallbackHandler()]})
|
|
19
|
+
|
|
20
|
+
For a raw ``StateGraph`` with custom tool nodes (no middleware surface), gate
|
|
21
|
+
execution with LangGraph's ``interrupt()`` inside the tool — see the README.
|
|
22
|
+
|
|
23
|
+
Either way, every tool call runs the local SecureVector app's three controls —
|
|
24
|
+
tool-call permissions, secret/data-leak detection, threat detection — and each
|
|
25
|
+
decision is written to the app's tamper-evident audit chain with
|
|
26
|
+
``runtime_kind="langgraph"``. Requires the SecureVector app running locally
|
|
27
|
+
(installed automatically as the ``securevector-ai-monitor`` dependency).
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
import logging
|
|
31
|
+
from typing import Optional
|
|
32
|
+
|
|
33
|
+
from ._version import __version__
|
|
34
|
+
from .config import Config
|
|
35
|
+
from .errors import AppUnreachable, SecureVectorError, ToolBlocked
|
|
36
|
+
from .handler import SecureVectorCallbackHandler
|
|
37
|
+
from .middleware import secure_middleware
|
|
38
|
+
|
|
39
|
+
log = logging.getLogger("securevector_sdk_langgraph")
|
|
40
|
+
|
|
41
|
+
__all__ = [
|
|
42
|
+
"__version__",
|
|
43
|
+
"secure_middleware",
|
|
44
|
+
"install",
|
|
45
|
+
"SecureVectorCallbackHandler",
|
|
46
|
+
"Config",
|
|
47
|
+
"SecureVectorError",
|
|
48
|
+
"ToolBlocked",
|
|
49
|
+
"AppUnreachable",
|
|
50
|
+
]
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
def install(mode: str = "observe", base_url: Optional[str] = None, **kwargs):
|
|
54
|
+
"""Convenience alias for :func:`secure_middleware` — returns the middleware
|
|
55
|
+
to pass to ``create_agent(..., middleware=[install(mode="enforce")])``."""
|
|
56
|
+
return secure_middleware(mode=mode, base_url=base_url, **kwargs)
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"""``import securevector_sdk_langgraph.auto`` — observe-mode global logging.
|
|
2
|
+
|
|
3
|
+
There is no global registration for middleware (it is passed to
|
|
4
|
+
``create_agent``), so this module registers an **observe-only** callback handler
|
|
5
|
+
as a LangChain global handler where the version supports it. For enforcement,
|
|
6
|
+
add ``secure_middleware(mode="enforce")`` to your agent's ``middleware`` list.
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
import logging
|
|
10
|
+
import os
|
|
11
|
+
|
|
12
|
+
from .handler import SecureVectorCallbackHandler
|
|
13
|
+
|
|
14
|
+
log = logging.getLogger("securevector_sdk_langgraph")
|
|
15
|
+
|
|
16
|
+
_handler = SecureVectorCallbackHandler()
|
|
17
|
+
|
|
18
|
+
try:
|
|
19
|
+
# Best-effort: register as a global handler so existing chains are logged.
|
|
20
|
+
from langchain_core.callbacks.manager import register_configure_hook
|
|
21
|
+
from contextvars import ContextVar
|
|
22
|
+
|
|
23
|
+
_var: ContextVar = ContextVar("securevector_sdk_langgraph_handler", default=None)
|
|
24
|
+
_var.set(_handler)
|
|
25
|
+
register_configure_hook(_var, True)
|
|
26
|
+
except Exception as exc: # pragma: no cover - depends on langchain version
|
|
27
|
+
log.warning(
|
|
28
|
+
"Global observe handler unavailable (%s); pass SecureVectorCallbackHandler "
|
|
29
|
+
"via config={'callbacks': [...]}, or use secure_middleware to enforce.",
|
|
30
|
+
exc,
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
if os.environ.get("SECUREVECTOR_SDK_MODE", "observe").lower() == "enforce":
|
|
34
|
+
log.warning(
|
|
35
|
+
"SECUREVECTOR_SDK_MODE=enforce has no effect via auto-import (callbacks "
|
|
36
|
+
"cannot block). Add secure_middleware(mode='enforce') to create_agent."
|
|
37
|
+
)
|