gibsoundsg commited on
Commit
ee35a5f
·
verified ·
1 Parent(s): 680f625

Add installation of "llama-index-embeddings-huggingface_api"

Browse files

The exercise in building the pipeline at line 145 needs this package. Currently, it's throwing an error:

["ModuleNotFoundError"](ModuleNotFoundError: No module named 'llama_index.embeddings.huggingface_api')

Files changed (1) hide show
  1. unit2/llama-index/components.ipynb +1 -1
unit2/llama-index/components.ipynb CHANGED
@@ -23,7 +23,7 @@
23
  "metadata": {},
24
  "outputs": [],
25
  "source": [
26
- "!pip install llama-index datasets llama-index-callbacks-arize-phoenix llama-index-vector-stores-chroma llama-index-llms-huggingface-api -U -q"
27
  ]
28
  },
29
  {
 
23
  "metadata": {},
24
  "outputs": [],
25
  "source": [
26
+ "!pip install llama-index datasets llama-index-callbacks-arize-phoenix llama-index-vector-stores-chroma llama-index-llms-huggingface-api llama-index-embeddings-huggingface_api -U -q"
27
  ]
28
  },
29
  {