Spaces:
Runtime error
Runtime error
File size: 236 Bytes
9d38059 |
1 2 3 4 5 6 7 |
# Bash script to ingest data
# This involves scraping the data from the web and then cleaning up and putting in Weaviate.
!set -eu
wget -r -A.html https://langchain.readthedocs.io/en/latest/
python3 ingest.py
python3 ingest_examples.py
|