282 questions
2
votes
1
answer
124
views
How to delete a persistent chromadb collection
I want to delete a persistent chromadb collection after 12 hours. I am currently saving the time the collection was created in mongodb and then check it against current time.
If it is 12 hours old, I ...
0
votes
1
answer
79
views
Chroma not accepting lists in persistentClient collection?
My objective is to do keyword filtering in Chroma. I have a field called keywords with a list of strings and I want to filter with it, but chroma won't let me add lists as a field.
I checked my Chroma ...
0
votes
1
answer
54
views
File not reaching backend on Streamlit - stuck on uploading on backend (localhost)
I've been trying to upload a file to streamlit and it is getting stuck on the uploading part. It was working perfectly before, the LLM was connected and I was getting correct responses. Then I added ...
0
votes
0
answers
78
views
Facing issue while Spring Boot tries to connect with Chroma
I am using Spring Boot 3.3.5 with below properties:
<java.version>17</java.version>
<spring-ai.version>1.0.0</spring-ai.version>
and in application.properties I have ...
0
votes
0
answers
243
views
Chroma.from_documents() hangs indefinitely when loading documents split by newline
I'm working with LangChain and trying to create a vector database from a text file containing book descriptions and ISBNs. Each line in the text file is a separate book description, so I split the ...
0
votes
1
answer
280
views
chromadb persistent client crashes when attempting to add a record to collection
I created a persistent chromadb client and added a collection to it.
collection = client.create_collection(
name="TEST-COLLECTION",
embedding_function=OpenAIEmbeddingFunction(
...
1
vote
0
answers
63
views
Feedback saved to ChromaDB not displaying on Chainlit UI after chat resumes
I'm building a Chainlit app where users can submit feedback during a chat session. I'm successfully saving this feedback to ChromaDB using an upsert_feedback function. However, when the chat session ...
0
votes
0
answers
73
views
Error embedding content: 504 Deadline Exceeded
So when i try to generate embeddings from two different types of codes -
here is the one which is mentioned on the langchain site but this gives me deadline exceed
@lru_cache
def get_settings():
...
0
votes
0
answers
67
views
Is there any way to insert data into chromadb and have it automatically manage the record ids?
I would like to add records to a chromadb collection through
collection.add(embeddings=list_of_embeddings, metadatas=list_of_metadata)
and would like chromadb to manage the record ids instead of ...
0
votes
1
answer
172
views
Issue with adding to chroma db
I am trying to write nodes to chroma db, but after creating index main.py closes and nothing else happens. That is, after the index is created no message even appears in the logger. If I work with ...
0
votes
0
answers
47
views
multi-intent queries in vector database retrieval
I'm working on a RAG pipeline using a vector database to search over a Q&A dataset. I'm using embedding-based dense retrieval to fetch relevant answers to user queries.
The issue I'm facing is ...
1
vote
0
answers
233
views
Worker was sent code 139! running Gunicorn + Chroma
I have a Flask app that uses Gunicorn/Nginx + ChromaDB v1.0.8. I've had no issues with its functionality till today when I restarted the service, to which I would receive
May 06 19:33:34 cluster ...
0
votes
0
answers
58
views
pandasai can't use training data
I have tried to train PandasAI in two ways: instruction training & q/a training and I followed the tutorial here exactly:https://docs.getpanda.ai/v2/intro. I'm currently using ChromaDB locally ...
-1
votes
1
answer
69
views
Does the outlines python library work in a streaming context yet?
I have created a fastAPI web interface to a local RAG powered question answer system. I have a local vector database populated with proprietary information.
I first take the user question from the ...
0
votes
0
answers
34
views
Chroma npm package keeps crashing between page refreshes
I'm developing an app that uses Chroma to store vectors. I'm running into the problem that initialy an operation is running fine but after a page refresh I'm getting the following notice: Please ...