This commit is contained in:
Erick Friis 2024-11-21 18:48:59 -08:00
parent 1798d6e92e
commit 3dd6c05ce7

View File

@ -45,7 +45,7 @@ We will also add some `test` dependencies in a separate poetry dependency group.
you are not using Poetry, we recommend adding these in a way that won't package them you are not using Poetry, we recommend adding these in a way that won't package them
with your published package, or just installing them separately when you run tests. with your published package, or just installing them separately when you run tests.
`langchain-tests` will provide the [standard tests](./standard_tests) we will use later. `langchain-tests` will provide the [standard tests](../standard_tests) we will use later.
We recommended pinning these to the latest version: <img src="https://img.shields.io/pypi/v/langchain-tests" style={{position:"relative",top:4,left:3}} /> We recommended pinning these to the latest version: <img src="https://img.shields.io/pypi/v/langchain-tests" style={{position:"relative",top:4,left:3}} />
Note: Replace `{latest version}` with the latest version of `langchain-tests` below. Note: Replace `{latest version}` with the latest version of `langchain-tests` below.
@ -76,7 +76,7 @@ langchain-parrot-link/
All of these files should already exist from step 1, except for All of these files should already exist from step 1, except for
`chat_models.py` and `test_chat_models.py`! We will implement `test_chat_models.py` `chat_models.py` and `test_chat_models.py`! We will implement `test_chat_models.py`
later, following the [standard tests](./standard_tests) guide. later, following the [standard tests](../standard_tests) guide.
To implement `chat_models.py`, let's copy the implementation from our To implement `chat_models.py`, let's copy the implementation from our
[Custom Chat Model Guide](../../../../how_to/custom_chat_model). [Custom Chat Model Guide](../../../../how_to/custom_chat_model).