We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb3e122 commit 11deae3Copy full SHA for 11deae3
ingest.py
@@ -9,7 +9,7 @@
9
10
def ingest_docs():
11
"""Get documents from web pages."""
12
- loader = ReadTheDocsLoader("langchain.readthedocs.io/en/latest/")
+ loader = ReadTheDocsLoader("api.python.langchain.com/en/latest/")
13
raw_documents = loader.load()
14
text_splitter = RecursiveCharacterTextSplitter(
15
chunk_size=1000,
ingest.sh
@@ -2,5 +2,5 @@
2
# This involves scraping the data from the web and then cleaning up and putting in Weaviate.
3
# Error if any command fails
4
set -e
5
-wget -r -A.html https://langchain.readthedocs.io/en/latest/
+wget -r -A.html https://api.python.langchain.com/en/latest/
6
python3 ingest.py
0 commit comments