mirror of
https://github.com/SkalaraAI/langchain-chatbot.git
synced 2025-04-03 20:10:17 -04:00
7 lines
236 B
Bash
Executable File
7 lines
236 B
Bash
Executable File
# Bash script to ingest data
|
|
# This involves scraping the data from the web and then cleaning up and putting in Weaviate.
|
|
# Error if any command fails
|
|
set -e
|
|
wget -r -A.html https://langchain.readthedocs.io/en/latest/
|
|
python3 ingest.py
|