Deletion (delete_many with filter) not fully delete all the matched objects
Description I use the following two option to delete object: log_name = ‘**’ delete_response = collection.data.delete_many( where=Filter.by_property(“log_name”).equal(log_name) ) 2.> … while not...
View ArticleMessage': "module 'text2vec-transformers': invalid combination of properties
I see. Removing the following line worked. Samuel: vectorize_collection_name=False, Question: Why must the DB require one element other the array to work? I’m quite new at vectorDBs.
View ArticleHybrid search with embedding outside the database
Morning I have a question related to hybrid search. We are testing weaviate locally and doing the embedding out of the database, and pass it the vector to insert and query data. But, because of this,...
View ArticleAggregate and query results mismatch
Hello @Antonio_Cesari, Welcome to our community! It’s great to have you here. The difference in results between the aggregate and query is a result of how Weaviate handles aggregation vs. query...
View ArticleAggregate and query results mismatch
Hello Mohamed, well I was using limit in my application code, however doing some more tests, I’ve found something weird: res = collection.query.near_text(query=query, offset=0, limit=10,...
View Article[Question] Bug in not_equal filter
Hi! I have created a code with tokenization set to field, and now it works as expected from weaviate import classes as wvc client.collections.delete("Test") collection = client.collections.create(...
View ArticleHybrid Search near_text distance filtering
Description The distance field in the HybridVector.near_text doesn’t filter contrary to the near_text search. Is this the desired behavior or a bug? This issue seems to implement the same behavior as...
View ArticleSpecifying properties with multi-tenancy causes bug
Hi @Tejas_Sharma !! You need to specify at least one nested property if using the object. Also, there was a missing , in your code, right after inverted_index_config Here is a working example: import...
View ArticleLate Chunking
hi @SomebodySysop !! That’s a great question. I will ask internally. Thanks!
View ArticleImplementation Issue-https://arxiv.org/abs/2408.11061.(StructuredRAG: JSON...
Thanks both! We have re-organized how experiments are run, We now have an Experiment model in our tests/models.py file – this is the schema for the results in the JSONs. They are then visualized with...
View ArticleCompaction Errors
I’m using latest version(v1.26.4) but still getting the same error: It is on Single mode. {"action":"lsm_compaction","class":"ItemV3","error":"write index: unlinkat...
View ArticleDeletion (delete_many with filter) not fully delete all the matched objects
This sounds a bit similar to the issue Some objects not readable after batch import / flush and switch failed - Support - Weaviate Community Forum we are having from time to time. Could you try if in...
View ArticleOllama dial tcp [::1]:11434: connect: connection refused
hi! One way to make sure that your Weaviate can connect to Ollama is doing like this: docker compose exec -ti weaviate sh -c "wget --header=\"Content-Type: application/x-www-form-urlencoded\"...
View ArticleLocal Hugginface vector embedding
hi @fabriziof64 !! Welcome to our community This message usually comes from the vectorizer service. Changing HUGGINGFACE_INFERENCE_API will set the url to where Weaviate will look for Hugging face...
View ArticleTutorial: Weaviate with local embedding and generation model on Kubernetes
Hi @samos123 !! Thanks for sharing! And Welcome to our community
View ArticleSpecifying properties with multi-tenancy causes bug
Ah okay, thanks Duda. We actually found a workaround solution of just creating the first record with tags specified to prevent this error but will try this out in the future. I would like to add...
View Article[Question] Bug in not_equal filter
Thanks Duda! Our nodes collection is already in production though so the alternate solution you mentioned was to just remove ‘device-’ from the front right? I guess to update the property, I can do...
View Article[Question] Bug in not_equal filter
Hi! You will need to set the tokenization of that property to FIELD. Check this part, where we define the lastUpdateDeviceId property. DudaNogueira: wvc.config.Property( name="lastUpdateDeviceId",...
View ArticleCompation failed
Any update on this? I’m still facing this issue with the latest version as well. @DudaNogueira @maddios
View ArticleHybrid search with embedding outside the database
hi @LauraZ !! The hybrid search is a fusion of the keyword search and the vector search. When you provide the vector parameter, Weaviate will not vectorize the query for you. The query parameter will...
View Article