From 50d2679e76d75402ebe116dbb9974f6d47294c6c Mon Sep 17 00:00:00 2001 From: Shapor Naghibzadeh Date: Mon, 5 Jun 2023 22:19:20 -0700 Subject: [PATCH] Update Document Loaders doc link in README --- 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.