Dirk Kulawiak
Dirk Kulawiak
We are getting more and more reports that users are hitting the maximum message size and should increase it. Note that the message size is currently hard-coded in the server...
``` import weaviate import weaviate.classes as wvc client = weaviate.connect_to_local() client.collections.delete("defaultTestCollection") collection = client.collections.create( name="defaultTestCollection", properties=[ wvc.config.Property(name="title", data_type=wvc.config.DataType.TEXT), wvc.config.Property(name="content", data_type=wvc.config.DataType.TEXT), ], vectorizer_config=[ wvc.config.Configure.NamedVectors.text2vec_contextionary( "title", source_properties=["title"], vectorize_collection_name=False ), wvc.config.Configure.NamedVectors.text2vec_contextionary( "title2", source_properties=["title"],...
### What's being changed: Adds additional tests ### Review checklist - [ ] Documentation has been updated, if necessary. Link to changed documentation: - [ ] Chaos pipeline run or...
see https://forum.weaviate.io/t/meta-endpoint-unexpected-status-code-401-with-response-body-code-401-message-anonymous-access-not-enabled-please-provide-an-auth-scheme-such-as-oidc/9682/6?u=dirk
From a user report: > I just tried inserting ["0.4", "0.2"...] instead of [0.4, 0.2].. again silly but Weaviate accepted this but was then unable to query the vectors it...
There are (currently) two was of doing google ai, which have slightly different paramters: - ai studio (got its own method https://github.com/weaviate/weaviate-python-client/pull/1510) - vertex Also add an extra method for...
Currently it is hard for our users to distinguish between server and client side errors. Internally everything is already in place and we should be good if we improve the...
[Python PR](https://github.com/weaviate/weaviate-python-client/pull/1494) for reference