From 9722479360c539a181113bd65fe5c3bad464133d Mon Sep 17 00:00:00 2001 From: Liam Lenholm <90681286+liamlenholm@users.noreply.github.com> Date: Wed, 3 May 2023 12:11:43 +0200 Subject: [PATCH] Update README.md Fixed Link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fd2de7e20..30814db51 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The app leverages LangChain's streaming support and async API to update the page ## ✅ Running locally 1. Install dependencies: `pip install -r requirements.txt` 1. Run `ingest.sh` to ingest LangChain docs data into the vectorstore (only needs to be done once). - 1. You can use other [Document Loaders](https://langchain.readthedocs.io/en/latest/modules/document_loaders.html) to load your own data into the vectorstore. + 1. You can use other [Document Loaders](https://langchain.readthedocs.io/en/latest/modules/indexes/document_loaders.html) to load your own data into the vectorstore. 1. Run the app: `make start` 1. To enable tracing, make sure `langchain-server` is running locally and pass `tracing=True` to `get_chain` in `main.py`. You can find more documentation [here](https://langchain.readthedocs.io/en/latest/tracing.html). 1. Open [localhost:9000](http://localhost:9000) in your browser.