docs: quickstart example returns 404 (#17609)

**Description:** 
Appears a legacy URL in the quickstart returns a 404. Updated to use
Langchain homepage and ran through tutorial to confirm results.
This commit is contained in:
Kevin 2024-02-15 19:50:41 -05:00 committed by GitHub
parent aa31025dd7
commit 88af4fd514
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -193,7 +193,7 @@ After that, we can import and use WebBaseLoader.
```python
from langchain_community.document_loaders import WebBaseLoader
loader = WebBaseLoader("https://docs.smith.langchain.com/overview")
loader = WebBaseLoader("https://docs.smith.langchain.com")
docs = loader.load()
```