weaviate-python-client
weaviate-python-client copied to clipboard
A python native client for easy interaction with a Weaviate instance.
Currently, the methods in the `Configure` factory have docstrings that reference deprecated areas of the documentation, e.g. `_Generate.openai` has the link https://weaviate.io/developers/weaviate/modules/reader-generator-modules/generative-openai in its docstring, which leads to a deprecated...
Idea/proof of concept for info/head. Not to be taken as anything resembling a final format, but to discuss what we might want & how to implement it. Example: ```python c.head()...
# What Say we have a List[str] property in one Weaviate collection such as **chunks**, or a JSON property, we then want an API to populate another collection with each...
This PR includes: - Added feature to ignore SSL validation errors Based on: https://github.com/weaviate/weaviate-python-client/issues/557
# What? Get the objects from a Collection in Weaviate and to a local JSON file. # Why? This helps with quick experimentation, maybe other use cases. # How? Thinking...
As the title suggests, the client is capable of fetching objects by a list of IDs but this is verbose requiring the user to make use of the filtering syntax....
Currently, the batch rate limit logic does not take into account the number of objects sent in the previous request when calculating whether it should backoff. To improve throughput and...
and define skip_vectorization and vectorize_property_name
# Issue: Implement Retry Strategy for Weaviate Search Functions ## Description We've noticed that Weaviate sometimes fails due to connection issues with OpenAI or because of stale connections. This has...