diff --git a/docs/docs/contributing/how_to/integrations/package.mdx b/docs/docs/contributing/how_to/integrations/package.mdx index df8e5b9babe..ae248bf6e07 100644 --- a/docs/docs/contributing/how_to/integrations/package.mdx +++ b/docs/docs/contributing/how_to/integrations/package.mdx @@ -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 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: 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 `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 [Custom Chat Model Guide](../../../../how_to/custom_chat_model).