Merge pull request #92 from DarwinAnim8or/patch-1

Include missing pip install library in RAG example
This commit is contained in:
Aymeric Roucher 2025-01-06 22:42:10 +01:00 committed by GitHub
commit dd2896e887
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ Let's build this system. 🛠️
Run the line below to install required dependencies:
```bash
!pip install smolagents pandas langchain langchain-community sentence-transformers faiss-cpu --upgrade -q
!pip install smolagents pandas langchain langchain-community sentence-transformers rank_bm25 --upgrade -q
```
To call the HF Inference API, you will need a valid token as your environment variable `HF_TOKEN`.
We use python-dotenv to load it.