ImportError: cannot import name 'LangchainEmbedding' from 'llama_index.core.base.embeddings'
Is this due to the way imports have been changed?
This is how I'm importing;
py
from llama_index.core.base.embeddings import LangchainEmbedding
Also tried
py from llama_index.core.embeddings import LangchainEmbedding
But both/all seem to give same issue, so wondering if the LangchainEmbeddings got moved somewhere? I was looking at the doc and couldn't find it.
from llama_index.llms.langchain import LangChainLLM
Is this mainly used for OpenAI/GPT models rather than using anthropic? I noticed that anthropic has their own;
: from llama_index.llms.anthropic import Anthropic
Also has the standard been changed to use llama_index.core. (...) for versions of llama_index .11 and higher?