Filter near_text search based on empty/non-empty text array
Hi! I just started using the Weaviate Python client (version 4.10.4). I have a collection movies that includes the following properties: movie_description (text, used for vector based search) and...
View ArticleFilter near_text search based on empty/non-empty text array
hi @violin1443 !! Welcome to our community If you want to filter by property length or null state, you need to first create a collection and specify that at inverted_index_config, like so: import...
View ArticleHow to update the endpoint_url of huggingface vectorizer of an existing...
hi @Haris_khan_Khakwani !! Unfortunately, we currently don’t have the option to change huggingface’s baseurl url on run time Most of other modules, for example, text2vec-cohere do have this option:...
View ArticleWeaviate 1.29 is here!
This week we have some really exciting news waiting for us - let’s dive right in to what’s new with Weaviate WEAVIATE 1.29 is here! Weaviate Core v1.29.0 release it’s finally here and the number of...
View ArticleHybrid Search: max-vector-distance not filtering results as expected
Thank you. Do we know what stable-version has this bug fixed/resolved?
View ArticleHybrid Search: max-vector-distance not filtering results as expected
IIRC correctly one of the early 1.26.X releases. If I were you I would update to the lastest 1.26 point release
View ArticleRetrieving “Adjacent” Chunks for Better Context
Hello everyone! I am working on a very similar problem and I am using the same strategy as most of you: Mike_Hudson: Query Weavitate and get the chunk that matches by cosine sim; Query Weaviate for...
View ArticleFilter near_text search based on empty/non-empty text array
This is very helpful! Thank you so much The current collection I am working on doesn’t have inverted_index_config specified–do I have to delete and rebuild the index? Or is there any way to add these...
View ArticleFilter near_text search based on empty/non-empty text array
Hi! Yes, you will need to create a new collection and copy over the data. Not all collection configuration is mutable. Here is a list of the ones you can change: weaviate.io Collection definition |...
View Article[Docs] YOUR TOPIC
Having a search bar on your site’s doc would be immensely helpful. I think a lot of developers, including myself, see having a docs-wide search as requisite to having good docs. please add one
View Article[Docs] YOUR TOPIC
Hi @Abel_McElroy ! Welcome to Weaviate Community! Weaviate does have a search functionality on Weaviate documentation. At the bottom of page, you can click on Ask AI, toogle on Search and see results...
View ArticleVolume and objects size going up instead of down after removing >50% of objects
Description Due to a bug in our update handling, instead of updating objects, we actually created new ones without deleting the old ones for a while. We noticed this a few days ago and have solved the...
View ArticleI want to retain my Weaviate data even If I restart my docker container
Hi! I am using weaviate via docker container Here is my docker code netnanny-weaviate: container_name: netnanny-weaviate image: semitechnologies/weaviate:latest ports: - "8080:8080" - "50051:50051"...
View ArticleAdding indexing property to an existing schema
I have an existing schema in weaviate that contains many objects. Recently, I’ve updated my schema with another property (Boolean). I want to add an indexing property in my schema -...
View ArticleVolume and objects size going up instead of down after removing >50% of objects
hi @afstkla !! The disk usage should be freed as the compaction goes. Can you confirm to me if the disk has not reduced even 1 day after the object deletion? Thanks!
View ArticleI want to retain my Weaviate data even If I restart my docker container
hi @Jotheraj_kori !! Welcome to our community PERSISTENCE_DATA_PATH will tell Weaviate where the data will be stored. As you are running Docker, you need to make sure that this folder will be mounted...
View ArticleAdding indexing property to an existing schema
hi @AnnTade ! Unfortunately, you can’t. Not all collection configurations are mutable. And this one is not. Check here for a list of mutable configurations: weaviate.io Collection definition |...
View ArticleVolume and objects size going up instead of down after removing >50% of objects
Hi @DudaNogueira , no, even though we ran the cleanup script Tuesday night (CET), this morning (48+hrs later) it’s still at 184.3 (which is ± the same as when I made this post). I’ve already tried...
View ArticleI want to retain my Weaviate data even If I restart my docker container
Hi @DudaNogueira Thank you for response I have modified the code as per your suggestion. Here is my code netnanny-weaviate: container_name: netnanny-weaviate image: semitechnologies/weaviate:latest...
View ArticleI want to retain my Weaviate data even If I restart my docker container
Oh! I see. That’s only an info message. Because this cluster is a single node, you can ignore it With this docker-compose, were you able to retain the data?
View Article