You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We welcome contributions from developers of all levels. If you find anything amiss with the notebooks or dependencies, please feel free to create a pull request.
2
+
3
+
If you want to change the conda dependency specification (the yaml file), you can test it like this:
4
+
```bash
5
+
conda env create --file langchain_ai.yaml --force
6
+
```
7
+
8
+
You can update the pip requirements like this:
9
+
```bash
10
+
pip freeze > requirements.txt
11
+
```
12
+
13
+
Please make sure that you keep these two ways of maintaining dependencies in sync.
14
+
15
+
Then make sure, you test the notebooks in the new environment to see that they run.
16
+
17
+
# Code validation
18
+
We've included a `Makefile` that includes instructions for validation with flake8, mypy, and other tools. I have run mypy like this:
Copy file name to clipboardexpand all lines: README.md
+1-35
Original file line number
Diff line number
Diff line change
@@ -251,42 +251,8 @@ You can find more details about API credentials and setup in chapter 3 of the bo
251
251
252
252
## 👋 Contribute
253
253
254
-
We welcome contributions from developers of all levels. If you find anything amiss with the notebooks or dependencies, please feel free to create a pull request.
254
+
We welcome contributions from developers of all levels. If you'd like to contribute, please check our [contributing guidelines](./CONTRIBUTING.md) and help make this repository and the book more accessible.
255
255
256
-
If you want to change the conda dependency specification (the yaml file), you can test it like this:
257
-
```bash
258
-
conda env create --file langchain_ai.yaml --force
259
-
```
260
-
261
-
You can update the pip requirements like this:
262
-
```bash
263
-
pip freeze > requirements.txt
264
-
```
265
-
266
-
Please make sure that you keep these two ways of maintaining dependencies in sync.
267
-
268
-
Then make sure, you test the notebooks in the new environment to see that they run.
269
-
270
-
---
271
-
[](https://star-history.com/#benman1/generative_ai_with_langchain&Date)
0 commit comments