weaviate-python-client
weaviate-python-client copied to clipboard
A python native client for easy interaction with a Weaviate instance.
Queries show the same `datetime` warning as insertion, which can be confusing at first ```shell Con002: You are inserting the datetime object 2017-01-01 00:00:00 without a timezone. The timezone will...
there are situations were we are not aware what is the current backup ID in order to make that available to the users so Weaviate will support backup list from...
there are situations were backup gets stuck and in those situations we would like to cancel the created (stuck) backups. so Weaviate will support backup cancellation from `1.27+` and in...
Proposal: Could we create new functions for wrapping generative capabilities? With: - **Mandatory** _prompt_ and _model_ parameters - **Optional** _search_results_ parameters from Weaviate This will allow a user to :...
The print statement results in unwanted console output. It's not controllable. Since in the client there is no logger, no printing is better than `print(e)`. In projects using this client...
Code like this ```python unindexed_response = water_temperatures.aggregate.over_all( group_by=GroupByAggregate(prop="location"), filters=Filter.by_property("unindexed_temp").greater_or_equal(80), return_metrics=Metrics("unindexed_temp").number(median=True, maximum=True, minimum=True), ) ``` Can return an error because the filter value (`80`) is type `valueInt` instead of type `valueNumber`...
We currently do not have a good auto complete support for pycharm and need to find out why
This PR constitutes a complete overhaul of the codebase structure with respect to the underlying connections of the `WeaviateClient` and `WeaviateAsyncClient` classes and how they are provided to them. Currently,...
This PR is meant to update the readthedocs page for this library., The dev version of the docs can be found [here](https://weaviate-python-client.readthedocs.io/en/stefan-readthedocs-update/index.html) The review of this PR should be also...