The following code worked about a week ago:
from llama_index.embeddings.langchain import LangchainEmbedding
from langchain.embeddings.huggingface import HuggingFaceEmbeddings
embed_model = LangchainEmbedding(HuggingFaceEmbeddings(model_name="WhereIsAI/UAE-Large-V1"))
Previously, the embed_model = ...
takes a few seconds to execute. However, now when I try to run it, it seems to be running indefinitely without an error/warning message. And it’s not executing.
Has anyone else come across this issue?