AttributeError: 'WeaviateClient' object has no attribute 'query'
hi @Kaan_Tiftikci !! Welcome to our community Can you share the code you are using? It seems like you are using different client versions. This is python v3 client: v3c =...
View Article[Verba] programmatic management of weaviate db
Hey! Thanks for your message Unfortunately, there’s no good way to handle Verba’s functionality programmatically right now. However, we’re planning on building a user-friendly endpoint that serves...
View ArticleAttributeError: 'WeaviateClient' object has no attribute 'query'
DudaNogueira: However, it is deprecated, a will be removed in future versions I just deleted it, it will be gone in the next release (4.10.0)
View Article'Meta endpoint! Unexpected status code: 503, with response body: None.'
Hi Duda, Thanks for your reply. I have the Weaviate instance installed on my client’s Kubernetes cluster ( 4 nodes) running on GCP. I am on Weaviate v16.8.7 & using Python 3.11.6 to connect. It...
View ArticlePenalizing Frequent Property Values in Vector/Hybrid Search
hi @ReverseHobo !! Welcome to our community I know that bm25 will consider if a token is common to all objects, and take that into consideration. Also, maybe you could group the query by provider_id,...
View Article'Meta endpoint! Unexpected status code: 503, with response body: None.'
Arun_Uma: v16.8.7 Hi! Do you mean 1.16, maybe? there isn’t a 16 version
View ArticleAsync weaviate query hybrid
hi! Welcome to our community !! For technical questions, we suggest using our Support category, as it has some questions before opening an issue. So: What is the server and client version you are...
View ArticleAnyone used many WHERE filters in deleteMany function via typescript v3
Description I know in python v4 version we can do it like this: collection.data.delete_many( where=( wvc.query.Filter.by_property(“document_name”).equal(“my_document”) &...
View ArticlePenalizing Frequent Property Values in Vector/Hybrid Search
Yeah thanks, grouping by provider_id was the solution!
View ArticleUsing like filter on text array
Hey, was wondering if it is possible to apply a like filter to match any text from a property that is a text array? For example, here we filter so that the “answer” (text type) must match *inter*....
View ArticleAnyone used many WHERE filters in deleteMany function via typescript v3
hi @alisha_liu !! This is how you can filter with multiple conditions in our typescript client So the syntax for deleteMany is similar, you can just pass a Filters.and, like so: // delete many with...
View ArticleUsing like filter on text array
hi @ReverseHobo ! I believe this is what you are asking: collection.data.insert({"text": "this is a test", "array": ["one", "two", "three"]}) collection.data.insert({"text": "this one test", "array":...
View Article[Verba] programmatic management of weaviate db
Oh i see. Yeah API would be good too. Can’t wait to get to use it! Thx!
View ArticleChange OpenAI Generative Model for Existing Classes
hi! Coming from the future This is now implemented: weaviate.io Manage collections | Weaviate Every object in Weaviate belongs to exactly one collection. Use the examples on this page to manage your...
View ArticleHow to enable multi tenancy on the existing collection?
This does not work: collection.config.update( multi_tenancy_config=Reconfigure.multi_tenancy(enabled=True) )
View ArticleHow to enable multi tenancy on the existing collection?
hi @arturs_sprogis !! Welcome to our community Not all collection configurations are mutable. Here you have a list of what configs are: weaviate.io Collection definition | Weaviate Schema...
View ArticleCannot process batch: not enough memory
Hi @DudaNogueira , @Dharanish , I’ve also seen the same issue today. Running weaviate: 1.24.11 Restarting the weaviate service has resolved this(temporarily I guess).
View ArticleHigh resource usage in Flat Index
Sorry for the delayed response No, we are primarily using Weaviate for production; there is a new usecase and we don’t evaluate with other DBs yet.
View ArticleHow expensive is the filter by property for a string operation?
Description I’m syncing in a user’s emails but sometimes the user may add the same entire email list twice. As a counter measure, I can do this to check if the email with this title exists:...
View ArticleCannot process batch: not enough memory
hi @bharath97 !! In order to mitigate this, some recommendations would be upgrading to latest version (a lot have improved from from 1.24 to 1.28). Also, we need to be aware that while ingesting data...
View Article