mirror of
https://github.com/SkalaraAI/langchain-chatbot.git
synced 2025-04-09 23:10:16 -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.
|
|
!set -eu
|
|
wget -r -A.html https://langchain.readthedocs.io/en/latest/
|
|
python3 ingest.py
|
|
python3 ingest_examples.py
|