-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Rag 5 Semantic Query (Fast Start throws an error) #989
Comments
I had run this file recently but didn't encounter any error. In some cases, rerun would solve problem. |
Hello all,
|
Hi @lekejo, you're right. It seems there's a typo in the example_5_rag_semantic_query.ipynb notebook. The issue occurred because the To fix this, you just need to update the keyword argument in the code like so: library.install_new_embedding(embedding_model_name=embedding_model, vector_db=vector_db) |
Hello,
I am new to all of this and I was trying to follow and run the RAG notebooks on google colab. The 5th notebook in the RAG series (Fast Start) when run on colab throws the following error. In fact, you can find the error in the original notebook itself which was uploaded. It seems this notebook never ran well.
update: Step 4 - Generating Embeddings in chomadb db - with Model- industry-bert-contracts
TypeError Traceback (most recent call last)
in <cell line: 2>()
1 print("\nupdate: Step 4 - Generating Embeddings in {} db - with Model- {}".format(vector_db, embedding_model))
----> 2 library.install_new_embedding(embedding_model=embedding_model, vector_db=vector_db)
TypeError: Library.install_new_embedding() got an unexpected keyword argument 'embedding_model'
I hope you see that.
The text was updated successfully, but these errors were encountered: