I'm simply running each cell in order for the demo notebooks that come with "llm-dolly-chatbot" and running into an Index error related to Chroma.
Cell 10 on Notebook 3 yields error: Index not found, please create an instance before querying
This is the code that generates the error:
def get_similar_docs(question, similar_doc_count):
return db.similarity_search(question, k=similar_doc_count)
# Let's test it with blackberries:
for doc in get_similar_docs("how to grow blackberry?", 2):
print(doc.page_content)
I'm simply running each cell in order for the demo notebooks that come with "llm-dolly-chatbot" and running into an Index error related to Chroma.
Cell 10 on Notebook 3 yields error: Index not found, please create an instance before querying
This is the code that generates the error:
Please fix, thanks!