Chat interface created#15
Conversation
|
Can you send what error do you get when you run the builder.py file |
|
load INSTRUCTOR_Transformer |
|
Try installing this library |
|
@ombhojane I was also facing the issue this morning. You can try this code as a temporary fix for avoiding that error. from chromadb.errors import InvalidDimensionException
try:
docsearch = Chroma.from_documents(documents=..., embedding=...)
except InvalidDimensionException:
Chroma().delete_collection()
docsearch = Chroma.from_documents(documents=..., embedding=...) |
|
@ombhojane Any updates on this PR? |
I have created a chat interface in Streamlit.
I've connected with our model.
Preview :


Please help to resolve this issue: I am unable to setup this project locally. the 4.7 GB model get installed, when I run main file. config.py also worked. But Builder.py not worked. Heence chormaDB not loaded and unable to run main.py
Since I've chat interface with main.py, It can work in your local system!
Improvements : this is first version of chat interface. we can add voice/enter arrow and make UI better of this.