securevector-sdk-langchain 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.
Files changed (26) hide show
  1. securevector_sdk_langchain-1.0.0/LICENSE +202 -0
  2. securevector_sdk_langchain-1.0.0/NOTICE +14 -0
  3. securevector_sdk_langchain-1.0.0/PKG-INFO +130 -0
  4. securevector_sdk_langchain-1.0.0/README.md +106 -0
  5. securevector_sdk_langchain-1.0.0/pyproject.toml +50 -0
  6. securevector_sdk_langchain-1.0.0/setup.cfg +4 -0
  7. securevector_sdk_langchain-1.0.0/src/securevector_sdk_langchain/__init__.py +51 -0
  8. securevector_sdk_langchain-1.0.0/src/securevector_sdk_langchain/_version.py +7 -0
  9. securevector_sdk_langchain-1.0.0/src/securevector_sdk_langchain/auto.py +37 -0
  10. securevector_sdk_langchain-1.0.0/src/securevector_sdk_langchain/client.py +223 -0
  11. securevector_sdk_langchain-1.0.0/src/securevector_sdk_langchain/config.py +54 -0
  12. securevector_sdk_langchain-1.0.0/src/securevector_sdk_langchain/core.py +180 -0
  13. securevector_sdk_langchain-1.0.0/src/securevector_sdk_langchain/errors.py +26 -0
  14. securevector_sdk_langchain-1.0.0/src/securevector_sdk_langchain/handler.py +92 -0
  15. securevector_sdk_langchain-1.0.0/src/securevector_sdk_langchain/middleware.py +109 -0
  16. securevector_sdk_langchain-1.0.0/src/securevector_sdk_langchain/tool_id.py +39 -0
  17. securevector_sdk_langchain-1.0.0/src/securevector_sdk_langchain.egg-info/PKG-INFO +130 -0
  18. securevector_sdk_langchain-1.0.0/src/securevector_sdk_langchain.egg-info/SOURCES.txt +24 -0
  19. securevector_sdk_langchain-1.0.0/src/securevector_sdk_langchain.egg-info/dependency_links.txt +1 -0
  20. securevector_sdk_langchain-1.0.0/src/securevector_sdk_langchain.egg-info/requires.txt +5 -0
  21. securevector_sdk_langchain-1.0.0/src/securevector_sdk_langchain.egg-info/top_level.txt +1 -0
  22. securevector_sdk_langchain-1.0.0/tests/test_analyze.py +58 -0
  23. securevector_sdk_langchain-1.0.0/tests/test_interceptor.py +132 -0
  24. securevector_sdk_langchain-1.0.0/tests/test_middleware.py +83 -0
  25. securevector_sdk_langchain-1.0.0/tests/test_tool_id.py +27 -0
  26. securevector_sdk_langchain-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,14 @@
1
+ SecureVector SDK for LangChain
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 LangChain framework via its public callback
7
+ API. "LangChain" and "LangGraph" 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
+ - langchain-core (Apache-2.0, (c) LangChain, Inc.)
@@ -0,0 +1,130 @@
1
+ Metadata-Version: 2.4
2
+ Name: securevector-sdk-langchain
3
+ Version: 1.0.0
4
+ Summary: SecureVector SDK for LangChain — brings the local threat monitor's three controls (tool-call permissions, secret/data-leak detection, threat detection) to every LangChain 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-langchain
9
+ Keywords: 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: langchain>=1.0
21
+ Provides-Extra: dev
22
+ Requires-Dist: pytest>=7.0; extra == "dev"
23
+ Dynamic: license-file
24
+
25
+ # SecureVector SDK for LangChain
26
+
27
+ > Bring the SecureVector local threat monitor's three controls — **tool-call
28
+ > permissions**, **secret / data-leak detection**, and **threat detection** —
29
+ > to every LangChain tool call, with tamper-evident audit logging. One import.
30
+
31
+ ```bash
32
+ pip install securevector-sdk-langchain
33
+ ```
34
+
35
+ > 📦 **One install — batteries included.** `pip install securevector-sdk-langchain`
36
+ > **also installs the local SecureVector app** (`securevector-ai-monitor`): the
37
+ > adapter **and** the detection engine + tamper-evident audit chain arrive in a
38
+ > single `pip install`. The SDK is a thin interception layer — **the app must be
39
+ > running locally** (`securevector-app --web`) for it to do anything.
40
+
41
+ ## Quick start
42
+
43
+ **Enforcement (recommended)** — the documented `wrap_tool_call` middleware,
44
+ which can cleanly block a tool before it runs:
45
+
46
+ ```python
47
+ from securevector_sdk_langchain import secure_middleware
48
+ from langchain.agents import create_agent
49
+
50
+ agent = create_agent(
51
+ model, tools,
52
+ middleware=[secure_middleware(mode="enforce")],
53
+ )
54
+ ```
55
+
56
+ A denied tool is short-circuited with a `ToolMessage` (the model sees a clean
57
+ "blocked by policy" result) — no exceptions, no crashed runs.
58
+
59
+ **Observe-only logging** for legacy `AgentExecutor` / raw LCEL chains, where the
60
+ middleware surface isn't available:
61
+
62
+ ```python
63
+ from securevector_sdk_langchain import SecureVectorCallbackHandler
64
+
65
+ chain.invoke(payload, config={"callbacks": [SecureVectorCallbackHandler()]})
66
+ ```
67
+
68
+ > Why two paths? LangChain **callbacks are an observability surface** — they
69
+ > cannot reliably block a tool call. The **`wrap_tool_call` middleware is the
70
+ > documented interception/short-circuit point**, so enforcement lives there.
71
+
72
+ ## What happens on every tool call
73
+
74
+ Before a tool runs, the SDK:
75
+
76
+ 1. **(a) Permissions** — resolves an allow/block verdict for the tool, using the
77
+ app's own precedence: cloud-pushed **synced** policy → local **override** →
78
+ **essential** registry → default-allow.
79
+ 2. **(b)+(c) Secret & threat scan** — sends the serialized tool input through the
80
+ app's `/analyze` pipeline.
81
+
82
+ After the tool returns, the result is scanned the same way to catch secrets /
83
+ exfiltration in tool output. Every decision is written to the app's audit chain
84
+ tagged `runtime_kind="langchain"`.
85
+
86
+ ## observe vs enforce
87
+
88
+ | | local app reachable | local app unreachable |
89
+ |---|---|---|
90
+ | **observe** (default) | log + advisory verdict; tool always runs | tool runs (fail-open) |
91
+ | **enforce** (opt-in) | tool runs only if the verdict ≠ block | **tool denied** (fail-closed) |
92
+
93
+ ```python
94
+ agent = create_agent(model, tools, middleware=[secure_middleware(mode="enforce")])
95
+ ```
96
+
97
+ Enforce mode prints a one-time disclosure to stderr. (Enforcement requires the
98
+ middleware path; the observe-only callback handler always runs in observe mode.)
99
+
100
+ ## Configuration
101
+
102
+ All optional, via env or `install(...)` kwargs:
103
+
104
+ | Env var | Default | Meaning |
105
+ |---|---|---|
106
+ | `SECUREVECTOR_SDK_APP_URL` | `http://127.0.0.1:8741` | local app base URL |
107
+ | `SECUREVECTOR_SDK_MODE` | `observe` | `observe` or `enforce` |
108
+ | `SECUREVECTOR_SDK_TIMEOUT_MS` | `3000` | per-call verdict timeout |
109
+ | `SECUREVECTOR_SDK_RISK_THRESHOLD` | `70` | risk score that blocks in enforce mode |
110
+ | `SECUREVECTOR_SDK_DISABLED` | _(unset)_ | set truthy to no-op |
111
+
112
+ ## Compliance
113
+
114
+ The tool-call-level, attributed, tamper-evident audit trail this produces is
115
+ exactly the **action-layer logging** auditors ask for under **EU AI Act
116
+ Art. 12 / 15**. This SDK produces the local evidence; the cloud governance
117
+ surface turns it into an auditor-ready pack.
118
+
119
+ ## Trademarks
120
+
121
+ **SecureVector** is the product name of this SDK. **LangChain** and
122
+ **LangGraph** are trademarks of LangChain, Inc. This is an independent,
123
+ community SDK that *integrates with* LangChain via its public callback API. It
124
+ is **not affiliated with, sponsored by, or endorsed by LangChain, Inc.** The
125
+ name uses "langchain" only descriptively, to identify the framework this
126
+ package works with (nominative fair use).
127
+
128
+ ## License
129
+
130
+ Apache-2.0. See [LICENSE](LICENSE) and [NOTICE](NOTICE).
@@ -0,0 +1,106 @@
1
+ # SecureVector SDK for LangChain
2
+
3
+ > Bring the SecureVector local threat monitor's three controls — **tool-call
4
+ > permissions**, **secret / data-leak detection**, and **threat detection** —
5
+ > to every LangChain tool call, with tamper-evident audit logging. One import.
6
+
7
+ ```bash
8
+ pip install securevector-sdk-langchain
9
+ ```
10
+
11
+ > 📦 **One install — batteries included.** `pip install securevector-sdk-langchain`
12
+ > **also installs the local SecureVector app** (`securevector-ai-monitor`): the
13
+ > adapter **and** the detection engine + tamper-evident audit chain arrive in a
14
+ > single `pip install`. The SDK is a thin interception layer — **the app must be
15
+ > running locally** (`securevector-app --web`) for it to do anything.
16
+
17
+ ## Quick start
18
+
19
+ **Enforcement (recommended)** — the documented `wrap_tool_call` middleware,
20
+ which can cleanly block a tool before it runs:
21
+
22
+ ```python
23
+ from securevector_sdk_langchain import secure_middleware
24
+ from langchain.agents import create_agent
25
+
26
+ agent = create_agent(
27
+ model, tools,
28
+ middleware=[secure_middleware(mode="enforce")],
29
+ )
30
+ ```
31
+
32
+ A denied tool is short-circuited with a `ToolMessage` (the model sees a clean
33
+ "blocked by policy" result) — no exceptions, no crashed runs.
34
+
35
+ **Observe-only logging** for legacy `AgentExecutor` / raw LCEL chains, where the
36
+ middleware surface isn't available:
37
+
38
+ ```python
39
+ from securevector_sdk_langchain import SecureVectorCallbackHandler
40
+
41
+ chain.invoke(payload, config={"callbacks": [SecureVectorCallbackHandler()]})
42
+ ```
43
+
44
+ > Why two paths? LangChain **callbacks are an observability surface** — they
45
+ > cannot reliably block a tool call. The **`wrap_tool_call` middleware is the
46
+ > documented interception/short-circuit point**, so enforcement lives there.
47
+
48
+ ## What happens on every tool call
49
+
50
+ Before a tool runs, the SDK:
51
+
52
+ 1. **(a) Permissions** — resolves an allow/block verdict for the tool, using the
53
+ app's own precedence: cloud-pushed **synced** policy → local **override** →
54
+ **essential** registry → default-allow.
55
+ 2. **(b)+(c) Secret & threat scan** — sends the serialized tool input through the
56
+ app's `/analyze` pipeline.
57
+
58
+ After the tool returns, the result is scanned the same way to catch secrets /
59
+ exfiltration in tool output. Every decision is written to the app's audit chain
60
+ tagged `runtime_kind="langchain"`.
61
+
62
+ ## observe vs enforce
63
+
64
+ | | local app reachable | local app unreachable |
65
+ |---|---|---|
66
+ | **observe** (default) | log + advisory verdict; tool always runs | tool runs (fail-open) |
67
+ | **enforce** (opt-in) | tool runs only if the verdict ≠ block | **tool denied** (fail-closed) |
68
+
69
+ ```python
70
+ agent = create_agent(model, tools, middleware=[secure_middleware(mode="enforce")])
71
+ ```
72
+
73
+ Enforce mode prints a one-time disclosure to stderr. (Enforcement requires the
74
+ middleware path; the observe-only callback handler always runs in observe mode.)
75
+
76
+ ## Configuration
77
+
78
+ All optional, via env or `install(...)` kwargs:
79
+
80
+ | Env var | Default | Meaning |
81
+ |---|---|---|
82
+ | `SECUREVECTOR_SDK_APP_URL` | `http://127.0.0.1:8741` | local app base URL |
83
+ | `SECUREVECTOR_SDK_MODE` | `observe` | `observe` or `enforce` |
84
+ | `SECUREVECTOR_SDK_TIMEOUT_MS` | `3000` | per-call verdict timeout |
85
+ | `SECUREVECTOR_SDK_RISK_THRESHOLD` | `70` | risk score that blocks in enforce mode |
86
+ | `SECUREVECTOR_SDK_DISABLED` | _(unset)_ | set truthy to no-op |
87
+
88
+ ## Compliance
89
+
90
+ The tool-call-level, attributed, tamper-evident audit trail this produces is
91
+ exactly the **action-layer logging** auditors ask for under **EU AI Act
92
+ Art. 12 / 15**. This SDK produces the local evidence; the cloud governance
93
+ surface turns it into an auditor-ready pack.
94
+
95
+ ## Trademarks
96
+
97
+ **SecureVector** is the product name of this SDK. **LangChain** and
98
+ **LangGraph** are trademarks of LangChain, Inc. This is an independent,
99
+ community SDK that *integrates with* LangChain via its public callback API. It
100
+ is **not affiliated with, sponsored by, or endorsed by LangChain, Inc.** The
101
+ name uses "langchain" only descriptively, to identify the framework this
102
+ package works with (nominative fair use).
103
+
104
+ ## License
105
+
106
+ 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_langchain`
7
+ # (distribution and import names are independent, same as scikit-learn /
8
+ # sklearn). Brand-led, framework-suffixed — the descriptive nominative-fair-use
9
+ # pattern, NOT the `langchain-*` prefix namespace reserved for LangChain Inc.'s
10
+ # own partner packages. See README "Trademarks".
11
+ name = "securevector-sdk-langchain"
12
+ version = "1.0.0"
13
+ description = "SecureVector SDK for LangChain — brings the local threat monitor's three controls (tool-call permissions, secret/data-leak detection, threat detection) to every LangChain tool call, with tamper-evident audit logging."
14
+ readme = "README.md"
15
+ requires-python = ">=3.10"
16
+ license = { text = "Apache-2.0" }
17
+ authors = [{ name = "SecureVector" }]
18
+ keywords = ["langchain", "llm", "security", "ai-agent", "audit", "compliance", "tool-permissions"]
19
+ classifiers = [
20
+ "Development Status :: 5 - Production/Stable",
21
+ "Intended Audience :: Developers",
22
+ "License :: OSI Approved :: Apache Software License",
23
+ "Programming Language :: Python :: 3",
24
+ "Topic :: Security",
25
+ ]
26
+
27
+ # The adapter is a thin interception layer. It depends on:
28
+ # - securevector-ai-monitor: the local app + the shipped SecureVectorClient
29
+ # (the detection engine + tamper-evident audit chain live there). One
30
+ # `pip install securevector-sdk-langchain` brings the adapter AND the app.
31
+ # - langchain: v1 provides the documented `wrap_tool_call` middleware (the
32
+ # primary enforce path) plus langchain-core's callback handler (observe).
33
+ # Everything else (permission resolution, audit forwarding) uses the stdlib.
34
+ dependencies = [
35
+ "securevector-ai-monitor>=4.7",
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-langchain"
47
+
48
+ [tool.setuptools.packages.find]
49
+ where = ["src"]
50
+ exclude = ["tests*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,51 @@
1
+ """SecureVector SDK for LangChain.
2
+
3
+ Enforcement (recommended) — the documented ``wrap_tool_call`` middleware::
4
+
5
+ from securevector_sdk_langchain import secure_middleware
6
+ from langchain.agents import create_agent
7
+
8
+ agent = create_agent(
9
+ model, tools,
10
+ middleware=[secure_middleware(mode="enforce")],
11
+ )
12
+
13
+ Observe-only logging for legacy AgentExecutor / raw LCEL chains::
14
+
15
+ from securevector_sdk_langchain import SecureVectorCallbackHandler
16
+ chain.invoke(payload, config={"callbacks": [SecureVectorCallbackHandler()]})
17
+
18
+ Either way, every tool call runs the local SecureVector app's three controls —
19
+ tool-call permissions, secret/data-leak detection, threat detection — and each
20
+ decision is written to the app's tamper-evident audit chain with
21
+ ``runtime_kind="langchain"``. Requires the SecureVector app running locally
22
+ (installed automatically as the ``securevector-ai-monitor`` dependency).
23
+ """
24
+
25
+ import logging
26
+ from typing import Optional
27
+
28
+ from ._version import __version__
29
+ from .config import Config
30
+ from .errors import AppUnreachable, SecureVectorError, ToolBlocked
31
+ from .handler import SecureVectorCallbackHandler
32
+ from .middleware import secure_middleware
33
+
34
+ log = logging.getLogger("securevector_sdk_langchain")
35
+
36
+ __all__ = [
37
+ "__version__",
38
+ "secure_middleware",
39
+ "install",
40
+ "SecureVectorCallbackHandler",
41
+ "Config",
42
+ "SecureVectorError",
43
+ "ToolBlocked",
44
+ "AppUnreachable",
45
+ ]
46
+
47
+
48
+ def install(mode: str = "observe", base_url: Optional[str] = None, **kwargs):
49
+ """Convenience alias for :func:`secure_middleware` — returns the middleware
50
+ to pass to ``create_agent(..., middleware=[install(mode="enforce")])``."""
51
+ return secure_middleware(mode=mode, base_url=base_url, **kwargs)
@@ -0,0 +1,7 @@
1
+ """Single source of truth for the package version at runtime.
2
+
3
+ The published version is stamped from pyproject.toml / the release tag by CI;
4
+ this constant is what `securevector_sdk_langchain.__version__` reports.
5
+ """
6
+
7
+ __version__ = "1.0.0"
@@ -0,0 +1,37 @@
1
+ """``import securevector_sdk_langchain.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_langchain")
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_langchain_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
+ )