wren-langchain 0.2.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.
- wren_langchain-0.2.0/.gitignore +14 -0
- wren_langchain-0.2.0/CHANGELOG.md +8 -0
- wren_langchain-0.2.0/LICENSE +201 -0
- wren_langchain-0.2.0/PKG-INFO +312 -0
- wren_langchain-0.2.0/README.md +247 -0
- wren_langchain-0.2.0/examples/langchain_demo.py +138 -0
- wren_langchain-0.2.0/examples/langgraph_demo.py +187 -0
- wren_langchain-0.2.0/pyproject.toml +125 -0
- wren_langchain-0.2.0/src/wren_langchain/__init__.py +15 -0
- wren_langchain-0.2.0/src/wren_langchain/_envelope.py +118 -0
- wren_langchain-0.2.0/src/wren_langchain/_format.py +149 -0
- wren_langchain-0.2.0/src/wren_langchain/_memory_api.py +98 -0
- wren_langchain-0.2.0/src/wren_langchain/_prompt.py +224 -0
- wren_langchain-0.2.0/src/wren_langchain/_providers/__init__.py +0 -0
- wren_langchain-0.2.0/src/wren_langchain/_providers/connection.py +80 -0
- wren_langchain-0.2.0/src/wren_langchain/_providers/mdl_source.py +42 -0
- wren_langchain-0.2.0/src/wren_langchain/_providers/memory.py +41 -0
- wren_langchain-0.2.0/src/wren_langchain/_toolkit.py +229 -0
- wren_langchain-0.2.0/src/wren_langchain/_tools.py +120 -0
- wren_langchain-0.2.0/src/wren_langchain/_tools_memory.py +123 -0
- wren_langchain-0.2.0/src/wren_langchain/exceptions.py +18 -0
- wren_langchain-0.2.0/tests/__init__.py +0 -0
- wren_langchain-0.2.0/tests/conformance/__init__.py +0 -0
- wren_langchain-0.2.0/tests/conformance/test_langchain_contract.py +122 -0
- wren_langchain-0.2.0/tests/conftest.py +34 -0
- wren_langchain-0.2.0/tests/integration/__init__.py +0 -0
- wren_langchain-0.2.0/tests/integration/conftest.py +78 -0
- wren_langchain-0.2.0/tests/integration/test_langgraph_toolnode.py +76 -0
- wren_langchain-0.2.0/tests/integration/test_memory_tools.py +68 -0
- wren_langchain-0.2.0/tests/integration/test_runtime_tools.py +53 -0
- wren_langchain-0.2.0/tests/unit/__init__.py +0 -0
- wren_langchain-0.2.0/tests/unit/test_envelope.py +187 -0
- wren_langchain-0.2.0/tests/unit/test_exceptions.py +21 -0
- wren_langchain-0.2.0/tests/unit/test_memory_api.py +112 -0
- wren_langchain-0.2.0/tests/unit/test_prompt.py +154 -0
- wren_langchain-0.2.0/tests/unit/test_providers_connection.py +84 -0
- wren_langchain-0.2.0/tests/unit/test_providers_mdl.py +58 -0
- wren_langchain-0.2.0/tests/unit/test_providers_memory.py +43 -0
- wren_langchain-0.2.0/tests/unit/test_toolkit_init.py +104 -0
- wren_langchain-0.2.0/tests/unit/test_toolkit_runtime.py +121 -0
- wren_langchain-0.2.0/tests/unit/test_tools_memory.py +159 -0
- wren_langchain-0.2.0/tests/unit/test_tools_runtime.py +141 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
__pycache__/
|
|
2
|
+
*.py[cod]
|
|
3
|
+
*.egg-info/
|
|
4
|
+
.pytest_cache/
|
|
5
|
+
.ruff_cache/
|
|
6
|
+
.coverage
|
|
7
|
+
dist/
|
|
8
|
+
build/
|
|
9
|
+
.venv/
|
|
10
|
+
|
|
11
|
+
# Local scratch scripts users create at the package root for ad-hoc testing
|
|
12
|
+
# (e.g. agent.py, agent_with_memory_check.py from the local-testing-guide).
|
|
13
|
+
# Anything in tests/ and src/wren_langchain/ stays tracked.
|
|
14
|
+
/agent*.py
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.2.0](https://github.com/Canner/WrenAI/compare/wren-langchain-v0.1.0...wren-langchain-v0.2.0) (2026-05-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **sdk:** add wren-langchain package for langchain/langgraph integration ([#2247](https://github.com/Canner/WrenAI/issues/2247)) ([f2c3b2d](https://github.com/Canner/WrenAI/commit/f2c3b2d834235e085d28e8726b81fd089028f5fd))
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2024 Canner, Inc.
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: wren-langchain
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: LangChain and LangGraph integration for Wren AI Core — attach a CLI-prepared Wren project to your agent in three lines.
|
|
5
|
+
Project-URL: Homepage, https://getwren.ai
|
|
6
|
+
Project-URL: Documentation, https://github.com/Canner/WrenAI/tree/main/sdk/wren-langchain#readme
|
|
7
|
+
Project-URL: Repository, https://github.com/Canner/WrenAI
|
|
8
|
+
Project-URL: Issues, https://github.com/Canner/WrenAI/issues
|
|
9
|
+
Project-URL: Changelog, https://github.com/Canner/WrenAI/blob/main/sdk/wren-langchain/CHANGELOG.md
|
|
10
|
+
Author-email: Wren AI <contact@getwren.ai>
|
|
11
|
+
License: Apache-2.0
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Keywords: agent,ai-agent,analytics,context-layer,data-modeling,langchain,langgraph,mdl,semantic,sql,wren,wrenai
|
|
14
|
+
Classifier: Development Status :: 4 - Beta
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Topic :: Database
|
|
22
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
23
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
+
Classifier: Typing :: Typed
|
|
25
|
+
Requires-Python: >=3.11
|
|
26
|
+
Requires-Dist: langchain-core>=0.3
|
|
27
|
+
Requires-Dist: langchain>=1.0
|
|
28
|
+
Requires-Dist: langgraph>=1.0
|
|
29
|
+
Requires-Dist: pydantic>=2
|
|
30
|
+
Requires-Dist: wren-engine>=0.5.0
|
|
31
|
+
Provides-Extra: all
|
|
32
|
+
Requires-Dist: wren-engine[all]>=0.5.0; extra == 'all'
|
|
33
|
+
Provides-Extra: athena
|
|
34
|
+
Requires-Dist: wren-engine[athena]>=0.5.0; extra == 'athena'
|
|
35
|
+
Provides-Extra: bigquery
|
|
36
|
+
Requires-Dist: wren-engine[bigquery]>=0.5.0; extra == 'bigquery'
|
|
37
|
+
Provides-Extra: clickhouse
|
|
38
|
+
Requires-Dist: wren-engine[clickhouse]>=0.5.0; extra == 'clickhouse'
|
|
39
|
+
Provides-Extra: databricks
|
|
40
|
+
Requires-Dist: wren-engine[databricks]>=0.5.0; extra == 'databricks'
|
|
41
|
+
Provides-Extra: dev
|
|
42
|
+
Requires-Dist: pytest-mock>=3; extra == 'dev'
|
|
43
|
+
Requires-Dist: pytest>=8; extra == 'dev'
|
|
44
|
+
Requires-Dist: ruff>=0.4; extra == 'dev'
|
|
45
|
+
Requires-Dist: wren-engine[memory]>=0.5.0; extra == 'dev'
|
|
46
|
+
Provides-Extra: memory
|
|
47
|
+
Requires-Dist: wren-engine[memory]>=0.5.0; extra == 'memory'
|
|
48
|
+
Provides-Extra: mssql
|
|
49
|
+
Requires-Dist: wren-engine[mssql]>=0.5.0; extra == 'mssql'
|
|
50
|
+
Provides-Extra: mysql
|
|
51
|
+
Requires-Dist: wren-engine[mysql]>=0.5.0; extra == 'mysql'
|
|
52
|
+
Provides-Extra: oracle
|
|
53
|
+
Requires-Dist: wren-engine[oracle]>=0.5.0; extra == 'oracle'
|
|
54
|
+
Provides-Extra: postgres
|
|
55
|
+
Requires-Dist: wren-engine[postgres]>=0.5.0; extra == 'postgres'
|
|
56
|
+
Provides-Extra: redshift
|
|
57
|
+
Requires-Dist: wren-engine[redshift]>=0.5.0; extra == 'redshift'
|
|
58
|
+
Provides-Extra: snowflake
|
|
59
|
+
Requires-Dist: wren-engine[snowflake]>=0.5.0; extra == 'snowflake'
|
|
60
|
+
Provides-Extra: spark
|
|
61
|
+
Requires-Dist: wren-engine[spark]>=0.5.0; extra == 'spark'
|
|
62
|
+
Provides-Extra: trino
|
|
63
|
+
Requires-Dist: wren-engine[trino]>=0.5.0; extra == 'trino'
|
|
64
|
+
Description-Content-Type: text/markdown
|
|
65
|
+
|
|
66
|
+
# wren-langchain
|
|
67
|
+
|
|
68
|
+
LangChain and LangGraph integration for [Wren AI Core](https://github.com/Canner/WrenAI).
|
|
69
|
+
|
|
70
|
+
Attach a CLI-prepared Wren project to a LangChain agent in three lines:
|
|
71
|
+
|
|
72
|
+
```python
|
|
73
|
+
from wren_langchain import WrenToolkit
|
|
74
|
+
from langchain.agents import create_agent
|
|
75
|
+
|
|
76
|
+
toolkit = WrenToolkit.from_project("./analytics_db")
|
|
77
|
+
agent = create_agent(
|
|
78
|
+
model="openai:gpt-4o",
|
|
79
|
+
tools=toolkit.get_tools(),
|
|
80
|
+
system_prompt=toolkit.system_prompt(),
|
|
81
|
+
)
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Complete runnable demos:
|
|
85
|
+
|
|
86
|
+
- [`examples/langchain_demo.py`](./examples/langchain_demo.py) — uses
|
|
87
|
+
``langchain.agents.create_agent``, the high-level factory. Smallest
|
|
88
|
+
amount of code; recommended starting point.
|
|
89
|
+
- [`examples/langgraph_demo.py`](./examples/langgraph_demo.py) — builds the
|
|
90
|
+
ReAct loop from LangGraph primitives (`StateGraph` + `ToolNode` +
|
|
91
|
+
conditional edges). Use this when you need custom routing, state, or
|
|
92
|
+
streaming.
|
|
93
|
+
|
|
94
|
+
## Prerequisites
|
|
95
|
+
|
|
96
|
+
This package assumes you have already used the Wren CLI to prepare a project:
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
wren context init
|
|
100
|
+
wren context build
|
|
101
|
+
wren memory index # optional but recommended
|
|
102
|
+
wren profile add ...
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
If you haven't installed the CLI yet, install `wren-engine` first:
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
pip install "wren-engine[memory,postgres]"
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
## Installation
|
|
112
|
+
|
|
113
|
+
`wren-langchain` exposes datasource and memory extras that pass through to
|
|
114
|
+
the matching `wren-engine` extras, so you only have to install once:
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
# Match the datasource your wren_project.yml uses (DuckDB needs no extra):
|
|
118
|
+
pip install "wren-langchain[mysql]"
|
|
119
|
+
pip install "wren-langchain[postgres,memory]"
|
|
120
|
+
pip install "wren-langchain[bigquery,memory]"
|
|
121
|
+
|
|
122
|
+
# Available datasource extras: postgres, mysql, bigquery, snowflake,
|
|
123
|
+
# clickhouse, trino, mssql, databricks, redshift, spark, athena, oracle.
|
|
124
|
+
|
|
125
|
+
# `memory` extra enables the three memory tools (wren_fetch_context,
|
|
126
|
+
# wren_recall_queries, wren_store_query). Without it the toolkit exposes
|
|
127
|
+
# only the three runtime tools.
|
|
128
|
+
|
|
129
|
+
# Install everything for experimentation:
|
|
130
|
+
pip install "wren-langchain[all,memory]"
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
If you prefer to install `wren-engine` separately (e.g. you already use the
|
|
134
|
+
CLI), the bare package is enough and your existing `wren-engine` extras carry
|
|
135
|
+
over:
|
|
136
|
+
|
|
137
|
+
```bash
|
|
138
|
+
pip install wren-langchain
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
## What you get
|
|
142
|
+
|
|
143
|
+
`WrenToolkit.from_project(path)` exposes:
|
|
144
|
+
|
|
145
|
+
- **6 LLM-facing tools** (3 runtime + 3 memory when `.wren/memory/` exists):
|
|
146
|
+
- `wren_query` — execute SQL through Wren's context layer, returns rows
|
|
147
|
+
- `wren_dry_plan` — plan SQL without execution to verify it targets models correctly
|
|
148
|
+
- `wren_list_models` — list project models with column counts and descriptions
|
|
149
|
+
- `wren_fetch_context` — retrieve relevant schema/business context for a question
|
|
150
|
+
- `wren_recall_queries` — surface similar past NL→SQL pairs as few-shot examples
|
|
151
|
+
- `wren_store_query` — persist a confirmed NL→SQL pair for future recall
|
|
152
|
+
- **Direct Python API**:
|
|
153
|
+
```python
|
|
154
|
+
toolkit.query("SELECT ...") # → pyarrow.Table
|
|
155
|
+
toolkit.dry_plan("SELECT ...") # → str (target-dialect SQL)
|
|
156
|
+
toolkit.dry_run("SELECT ...") # → None (validation only)
|
|
157
|
+
toolkit.memory.fetch("revenue trends")
|
|
158
|
+
toolkit.memory.recall("top customers")
|
|
159
|
+
toolkit.memory.store(nl="...", sql="...", tags=["..."])
|
|
160
|
+
```
|
|
161
|
+
- **`toolkit.system_prompt()`** — Wren-aware system prompt that adapts to enabled tools and includes your project's `instructions.md` when present.
|
|
162
|
+
|
|
163
|
+
## Configuration
|
|
164
|
+
|
|
165
|
+
```python
|
|
166
|
+
WrenToolkit.from_project(
|
|
167
|
+
path, # required — path to your prepared Wren project
|
|
168
|
+
profile="prod", # optional — picks a named profile (default: active)
|
|
169
|
+
)
|
|
170
|
+
|
|
171
|
+
toolkit.get_tools(
|
|
172
|
+
include_memory_write=True, # set False to keep memory read-only
|
|
173
|
+
raise_on_error=False, # set True to surface exceptions to LangChain retry
|
|
174
|
+
)
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
Memory is **auto-detected** from the project: present `<path>/.wren/memory/`
|
|
178
|
+
exposes the 3 memory tools alongside the 3 runtime tools; absent → only the
|
|
179
|
+
runtime tools. To enable, run `wren memory index` from the project root; to
|
|
180
|
+
disable, delete the directory. There is no override kwarg.
|
|
181
|
+
|
|
182
|
+
`include_memory_write=False` removes `wren_store_query` from the returned
|
|
183
|
+
list while keeping `wren_fetch_context` and `wren_recall_queries`. Use this
|
|
184
|
+
when you want the agent to read curated past pairs but never persist new
|
|
185
|
+
ones (e.g., a shared / pinned memory). When memory is disabled, this flag
|
|
186
|
+
has no effect — no memory tools are returned regardless.
|
|
187
|
+
|
|
188
|
+
### How `path`, `profile`, and `.env` interact
|
|
189
|
+
|
|
190
|
+
Three pieces of state combine to produce a connection. Understanding which
|
|
191
|
+
one drives what avoids surprises:
|
|
192
|
+
|
|
193
|
+
| Source | Holds | Resolved by |
|
|
194
|
+
|---|---|---|
|
|
195
|
+
| `path/wren_project.yml` + `target/mdl.json` | MDL models, schema, `data_source` | `from_project(path)` |
|
|
196
|
+
| `path/.env` | Secret values (`MYSQL_HOST`, `MYSQL_PASSWORD`, …) | `from_project(path)` auto-loads it |
|
|
197
|
+
| `~/.wren/profiles.yml` | Connection template (`host: ${MYSQL_HOST}`, …) | `profile=` kwarg or fallback chain |
|
|
198
|
+
|
|
199
|
+
**`profile=` resolution chain** (highest priority first):
|
|
200
|
+
|
|
201
|
+
1. Explicit `profile="<name>"` kwarg passed to `from_project`.
|
|
202
|
+
2. The `profile:` field inside the project's `wren_project.yml`, e.g.:
|
|
203
|
+
```yaml
|
|
204
|
+
schema_version: 3
|
|
205
|
+
data_source: mysql
|
|
206
|
+
profile: test-project3 # locks this project to a specific profile
|
|
207
|
+
```
|
|
208
|
+
3. The globally active profile (`wren profile switch <name>`).
|
|
209
|
+
|
|
210
|
+
### When does `profile=` actually change which database you connect to?
|
|
211
|
+
|
|
212
|
+
This is subtle, because **profile values are templates that resolve from the
|
|
213
|
+
project's `.env`**, not standalone connection records. Three scenarios:
|
|
214
|
+
|
|
215
|
+
**Scenario A — `profile=` is a no-op (most common)**
|
|
216
|
+
|
|
217
|
+
Your `~/.wren/profiles.yml` has multiple profiles that all use the same
|
|
218
|
+
placeholder names:
|
|
219
|
+
|
|
220
|
+
```yaml
|
|
221
|
+
profiles:
|
|
222
|
+
test-project3:
|
|
223
|
+
datasource: mysql
|
|
224
|
+
host: ${MYSQL_HOST}
|
|
225
|
+
database: ${MYSQL_DATABASE}
|
|
226
|
+
test-project4:
|
|
227
|
+
datasource: mysql
|
|
228
|
+
host: ${MYSQL_HOST} # ← same placeholder
|
|
229
|
+
database: ${MYSQL_DATABASE}
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
Because `from_project("/path/to/test-project3")` loads `test-project3/.env`
|
|
233
|
+
into the environment, **both profiles resolve to the same connection** —
|
|
234
|
+
`${MYSQL_HOST}` reads from project3's `.env` regardless of which profile
|
|
235
|
+
name you picked. Profile selection is cosmetic in this layout.
|
|
236
|
+
|
|
237
|
+
**Scenario B — `profile=` selects different placeholders**
|
|
238
|
+
|
|
239
|
+
```yaml
|
|
240
|
+
profiles:
|
|
241
|
+
dev:
|
|
242
|
+
host: ${DEV_HOST}
|
|
243
|
+
prod:
|
|
244
|
+
host: ${PROD_HOST}
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
Now `profile="dev"` and `profile="prod"` read different env vars from the
|
|
248
|
+
same `.env`, so the choice matters.
|
|
249
|
+
|
|
250
|
+
**Scenario C — `profile=` selects hardcoded values or different datasources**
|
|
251
|
+
|
|
252
|
+
```yaml
|
|
253
|
+
profiles:
|
|
254
|
+
local:
|
|
255
|
+
datasource: duckdb
|
|
256
|
+
url: /tmp/local.duckdb
|
|
257
|
+
format: duckdb
|
|
258
|
+
remote:
|
|
259
|
+
datasource: postgres
|
|
260
|
+
host: prod-db.example.com # hardcoded
|
|
261
|
+
port: 5432
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
`profile="local"` vs `profile="remote"` connect to genuinely different
|
|
265
|
+
databases. Note: if `wren_project.yml` specifies `data_source:` and you
|
|
266
|
+
pick a profile with a different `datasource:`, the connection will fail —
|
|
267
|
+
the project's MDL is built against one specific dialect.
|
|
268
|
+
|
|
269
|
+
### Recommendation: one project, one profile
|
|
270
|
+
|
|
271
|
+
If you follow the common pattern of **one Wren project per database**
|
|
272
|
+
(each project gets its own `.env` and points at its own DB), set the
|
|
273
|
+
profile inside `wren_project.yml` and stop passing `profile=`:
|
|
274
|
+
|
|
275
|
+
```yaml
|
|
276
|
+
# wren_project.yml
|
|
277
|
+
schema_version: 3
|
|
278
|
+
name: test-project3
|
|
279
|
+
data_source: mysql
|
|
280
|
+
profile: test-project3
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
```python
|
|
284
|
+
toolkit = WrenToolkit.from_project("/path/to/test-project3")
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
This pins the project to its intended profile, no more "is the active
|
|
288
|
+
profile what I think it is?" — and it survives `wren profile switch`
|
|
289
|
+
elsewhere on the same machine.
|
|
290
|
+
|
|
291
|
+
## Compatibility matrix
|
|
292
|
+
|
|
293
|
+
| `wren-langchain` | `wren-engine` | `langchain` | `langgraph` |
|
|
294
|
+
|---|---|---|---|
|
|
295
|
+
| 0.1.0 | >= 0.5.0 | >= 1.0 | >= 1.0 |
|
|
296
|
+
|
|
297
|
+
## Known limitations (v0.1)
|
|
298
|
+
|
|
299
|
+
- **Synchronous tools only.** LangChain auto-bridges to a thread pool when tools run in async LangGraph; multi-tenant servers serving > ~32 concurrent users may exhaust the default executor pool.
|
|
300
|
+
- **One toolkit per agent.** If you need to query multiple Wren projects, build separate agents.
|
|
301
|
+
- **Memory is auto-detected** from `.wren/memory/` and there is no kwarg to override. To enable, run `wren memory index`; to disable, delete the directory.
|
|
302
|
+
- **No hot reload mechanism.** `target/mdl.json` is re-read on every tool call, so `wren context build` updates from CLI are picked up automatically. Profile changes require constructing a new toolkit.
|
|
303
|
+
- **Don't run `wren memory index` while an agent is using the same project.** The index operation drops and recreates the LanceDB schema table; concurrent reads may transiently fail.
|
|
304
|
+
|
|
305
|
+
## License
|
|
306
|
+
|
|
307
|
+
Apache License 2.0. See [LICENSE](./LICENSE) for the full text, or the
|
|
308
|
+
[repository-level LICENSE](../../LICENSE) for the path-to-license map.
|
|
309
|
+
|
|
310
|
+
The names "Wren", "WrenAI", and the project's logos are trademarks of
|
|
311
|
+
Canner, Inc. and are not licensed under Apache 2.0; their use is governed
|
|
312
|
+
separately.
|