mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-21 14:18:52 +00:00
parent
aa212c3d0e
commit
ab3c124ffb
4
.github/CONTRIBUTING.md
vendored
4
.github/CONTRIBUTING.md
vendored
@ -77,7 +77,7 @@ tell Poetry to use the virtualenv python environment (`poetry config virtualenvs
|
|||||||
|
|
||||||
There are two separate projects in this repository:
|
There are two separate projects in this repository:
|
||||||
- `langchain`: core langchain code, abstractions, and use cases
|
- `langchain`: core langchain code, abstractions, and use cases
|
||||||
- `langchain.experimental`: see the [Experimental README](../libs/experimental/README.md) for more information.
|
- `langchain.experimental`: see the [Experimental README](https://github.com/langchain-ai/langchain/tree/master/libs/experimental/README.md) for more information.
|
||||||
|
|
||||||
Each of these has its own development environment. Docs are run from the top-level makefile, but development
|
Each of these has its own development environment. Docs are run from the top-level makefile, but development
|
||||||
is split across separate test & release flows.
|
is split across separate test & release flows.
|
||||||
@ -129,7 +129,7 @@ To run unit tests in Docker:
|
|||||||
make docker_tests
|
make docker_tests
|
||||||
```
|
```
|
||||||
|
|
||||||
There are also [integration tests and code-coverage](../libs/langchain/tests/README.md) available.
|
There are also [integration tests and code-coverage](https://github.com/langchain-ai/langchain/tree/master/libs/langchain/tests/README.md) available.
|
||||||
|
|
||||||
### Formatting and Linting
|
### Formatting and Linting
|
||||||
|
|
||||||
|
@ -14,6 +14,7 @@ cd ../_dist
|
|||||||
poetry run python scripts/model_feat_table.py
|
poetry run python scripts/model_feat_table.py
|
||||||
poetry run nbdoc_build --srcdir docs
|
poetry run nbdoc_build --srcdir docs
|
||||||
cp ../cookbook/README.md src/pages/cookbook.mdx
|
cp ../cookbook/README.md src/pages/cookbook.mdx
|
||||||
|
cp ../.github/CONTRIBUTING.md docs/contributing.md
|
||||||
poetry run python scripts/generate_api_reference_links.py
|
poetry run python scripts/generate_api_reference_links.py
|
||||||
yarn install
|
yarn install
|
||||||
yarn start
|
yarn start
|
||||||
|
@ -173,6 +173,10 @@ const config = {
|
|||||||
to: "/docs/community",
|
to: "/docs/community",
|
||||||
label: "Community",
|
label: "Community",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
to: "/docs/contributing",
|
||||||
|
label: "Developer's guide",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
to: "/docs/additional_resources/dependents",
|
to: "/docs/additional_resources/dependents",
|
||||||
label: "Dependents",
|
label: "Dependents",
|
||||||
|
@ -49,4 +49,5 @@ python3.11 -m pip install -r vercel_requirements.txt
|
|||||||
python3.11 scripts/model_feat_table.py
|
python3.11 scripts/model_feat_table.py
|
||||||
nbdoc_build --srcdir docs
|
nbdoc_build --srcdir docs
|
||||||
cp ../cookbook/README.md src/pages/cookbook.mdx
|
cp ../cookbook/README.md src/pages/cookbook.mdx
|
||||||
|
cp ../.github/CONTRIBUTING.md docs/contributing.md
|
||||||
python3.11 scripts/generate_api_reference_links.py
|
python3.11 scripts/generate_api_reference_links.py
|
||||||
|
Loading…
Reference in New Issue
Block a user