Validation error for FastEmbedEmbeddings - extra fields not permitted #28265
Unanswered
Fernando7181
asked this question in
Q&A
Replies: 1 comment 3 replies
-
@Fernando7181, the issue seems to be with the parameter name Here's the corrected version of your code: from langchain.vectorstores import Chroma
# Correct the parameter name from 'embeddings' to 'embedding'
vector_store = Chroma.from_documents(
documents=chunks,
embedding=embedding,
persist_directory="./sql_chroma_db"
) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Checked other resources
Commit to Help
Example Code
Description
for some reason I can ingest() my code for my vector dabase and im not sure what to do
System Info
Beta Was this translation helpful? Give feedback.
All reactions