-
Notifications
You must be signed in to change notification settings - Fork 17k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ImportError: Dependencies for InstructorEmbedding not found. #30516
Comments
LangChain uses Solution:Instead of uv add InstructorEmbedding or uv pip install InstructorEmbedding For me, this worked fine, and the issue was resolved. Try this method if you're facing the same problem! 🚀 |
HuggingFaceInstructEmbeddings class from the langchain_community library. The specific issue was a compatibility problem between: The langchain_community embeddings implementation The error suggested that there was an unexpected 'token' argument being passed during the model loading process, which was causing the initialization to fail. This typically happens due to: Version mismatches between libraries This code Could Bridge all the Gaps That are Present from langchain_community.embeddings import HuggingFaceInstructEmbeddings def create_embeddings(
Example usagedef main():
if name == "main": |
Checked other resources
Example Code
I am encountering the following error when trying to run the code using the HuggingFaceInstructEmbeddings from the langchain_community.embeddings module:
ImportError: Dependencies for InstructorEmbedding not found.
Code:
Installed Dependency Versions:
langchain==0.3.21
langchain-core==0.3.49
langchain-community==0.3.20
sentence-transformers==2.2.2
InstructorEmbedding==1.0.1
Could you please assist in resolving this issue? If there are any compatibility updates or changes needed in the dependencies or usage, it would be great to have more insight.
Error Message and Stack Trace (if applicable)
No response
Description
Expected Behavior:
The HuggingFaceInstructEmbeddings object should initialize successfully, and the embedding model should be loaded for document and query retrieval.
System Info
System Information
Package Information
The text was updated successfully, but these errors were encountered: