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

Some users have queried how they can produce a JSON-type output in the `v4` API. It may be a nice QoL improvement if this was possible, e.g. through a `str`/`repr`...

good first issue

Currently, the V4 client does not support the group parameter natively, as described here: https://weaviate.io/developers/weaviate/api/graphql/additional-operators#grouping ``` import os import weaviate import weaviate.classes as wvc from weaviate.collections.classes.grpc import Sort client =...

Add ability to get one tenant ie: check if the tenant exists without getting a whole list? Or is the suggestion to just try and re-add it? I couldn't see...

24Q1

Currently, many of the docstrings are inaccurate in their description of poorly formatted with respect to the IDE and readthedocs.org rendering styles. This issue serves as a central location to...

Suppose we have this nested filter: ``` (wvc.query.Filter.by_property("points").greater_than(700) | wvc.query.Filter.by_property("points").less_than(300)) ``` the negation is: ``` (wvc.query.Filter.by_property("points").less_or_equal(700) & wvc.query.Filter.by_property("points").greater_or_equal(300)) ``` it would be convenient if users can just take the first...

enhancement

### How to reproduce this bug? I made a lamdba function with the weaviate package download I tried to upload the file through zip and create a layer with the...

bug

This PR introduces a script that reads from a `.yaml` file and generates `.pyi` stub files in the `weaviate/collections/queries/**` directories for use when type hinting usage of the queries with...

Currently, all queries seem to raise a `WeaviateQueryError` upon failure (e.g. timeouts). Would it be possible to create a specific exception class & message for any queries from the `.generate`...

enhancement
usability

When there is an error the client returns a stack trace. Sometimes the stack trace is very long, which makes it hard to find the error statement. Can the stack...