weaviate-python-client icon indicating copy to clipboard operation
weaviate-python-client copied to clipboard

A python native client for easy interaction with a Weaviate instance.

Results 180 weaviate-python-client issues
Sort by recently updated
recently updated
newest added

generative for anthropic has [this parameter exposed on client](https://github.com/weaviate/weaviate-python-client/blob/968fe75168a61bb872d947265d769c72c33c5201/weaviate/collections/classes/config.py#L1000), but not for the [generative.aws](https://github.com/weaviate/weaviate-python-client/blob/968fe75168a61bb872d947265d769c72c33c5201/weaviate/collections/classes/config.py#L971). So we could either add it to `generative.bedrock` or create a new `generative.bedrock_anthropic` As per discussion...

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...

### How to reproduce this bug? It happens during the loading the module for Memgraph. In the local environment, I'm able to add the module and do the code with...

bug

example client [apikey](https://open.bigmodel.cn/usercenter/proj-mgmt/apikeys) ``` import weaviate headers = { "X-Zhipuai-Api-Key": 'apikey' } client = weaviate.connect_to_local(headers=headers) print(client.is_ready()) ``` generative_config [model support](https://bigmodel.cn/dev/howuse/model) ``` from weaviate.classes.config import Configure, Property, DataType, VectorDistances client.collections.create( "OpenVid_1M",...

This commit adds a new cluster method get_cluster_statistics() which retrieves valuable statistics from the cluster.

Weaviate Version: 1.27.3 Python Client: 3.26.7 Python Version: 3.11.9 Running the V3 weaviate client, but I am getting the following error when trying to do a batch import: Error: Cannot...

I am consistently seeing the following warning when using `4.9.3` client with Python `3.12.7` on M1 MacOS 14.7. ``` sys:1: ResourceWarning: unclosed ``` I am running the DB locally using...

- Add support for https://github.com/weaviate/weaviate/pull/5695 and enable the capability to configure a collection using local adaptive SQ. - Do not merge yet until the naming is agreed.