hey all I think 0.7.24 broke something. I got:
bi@bi:~/ai/quiz-maker-be$ python3 main.py
Traceback (most recent call last):
File "/home/bi/ai/quiz-maker-be/main.py", line 5, in <module>
from llama_index import SimpleDirectoryReader
File "/home/bi/.local/lib/python3.10/site-packages/llama_index/__init__.py", line 12, in <module>
from llama_index.data_structs.struct_type import IndexStructType
File "/home/bi/.local/lib/python3.10/site-packages/llama_index/data_structs/__init__.py", line 3, in <module>
from llama_index.data_structs.data_structs import (
File "/home/bi/.local/lib/python3.10/site-packages/llama_index/data_structs/data_structs.py", line 14, in <module>
from llama_index.schema import BaseNode, TextNode
File "/home/bi/.local/lib/python3.10/site-packages/llama_index/schema.py", line 9, in <module>
from llama_index.bridge.langchain import Document as LCDocument
File "/home/bi/.local/lib/python3.10/site-packages/llama_index/bridge/langchain.py", line 21, in <module>
from langchain.embeddings import HuggingFaceEmbeddings, HuggingFaceBgeEmbeddings
ImportError: cannot import name 'HuggingFaceBgeEmbeddings' from 'langchain.embeddings' (/home/bi/.local/lib/python3.10/site-packages/langchain/embeddings/__init__.py)
and then down graded to 0.7.23 and it worked fine.
```