multiple: langchain-standard-tests -> langchain-tests (#28139)

This commit is contained in:
Erick Friis
2024-11-15 11:32:04 -08:00
committed by GitHub
parent 409c7946ac
commit 6d2004ee7d
31 changed files with 315 additions and 253 deletions

View File

@@ -1,23 +1,27 @@
# langchain-standard-tests
# langchain-tests
This is an INTERNAL library for the LangChain project. It contains the base classes for
This is a testing library for LangChain integrations. It contains the base classes for
a standard set of tests.
## Installation
This package will NOT be regularly published to pypi. It is intended to be installed
directly from github at test time.
We encourage pinning your version to a specific version in order to avoid breaking
your CI when we publish new tests. We recommend upgrading to the latest version
periodically to make sure you have the latest tests.
Not pinning your version will ensure you always have the latest tests, but it may
also break your CI if we introduce tests that your integration doesn't pass.
Pip:
```bash
pip install git+https://github.com/langchain-ai/langchain.git#subdirectory=libs/standard-tests
pip install -U langchain-tests
```
Poetry:
```bash
poetry add git+https://github.com/langchain-ai/langchain.git#subdirectory=libs/standard-tests
poetry add langchain-tests
```
## Usage