====== Eerste test AI-Chat-Bot met eigen data ======
<= [[start|Terug naar start]]\\
<- -- [[projecten|Terug naar A3Dbot Start]]\\
<- -- -- [[a3d_bot_bouwen|Terug naar A3Dbot Web App bouwen project]]
[[https://www.youtube.com/watch?v=dXxQ0LR-3Hg|YouTube: Chat with Multiple PDFs | LangChain App Tutorial in Python (Free LLMs and Embeddings)]]\\
-> De eerste test doen we met een kopie van het **[[https://github.com/alejandro-ao/ask-multiple-pdfs|gitHub project ask-multiple-pdfs van Alejandro AO]]**
git clone https://github.com/alejandro-ao/ask-multiple-pdfs.git
-> Ga de "ask-multiple-pdfs" map in met
cd ask-multiple-pdfs
dir
//**dir** toont bestanden die in de map zitten//
-> Update de Repository Indien Nodig
git pull
-> Installeer de juiste dependencies
pip install -r requirements.txt
-> Content requirements.txt
langchain==0.0.184
PyPDF2==3.0.1
python-dotenv==1.0.0
streamlit==1.18.1
openai==0.27.6
faiss-cpu==1.7.4
altair==4
tiktoken==0.4.0
# uncomment to use huggingface llms
# huggingface-hub==0.14.1
# uncomment to use instructor embeddings
# InstructorEmbedding==1.0.1
# sentence-transformers==2.2.2
-> Start de web-app met
streamlit run app.py
----