Tommy Smith

Results 76 comments of Tommy Smith
trafficstars

In the Python client, the version of the package is obtained [here](https://github.com/weaviate/weaviate-python-client/blob/main/weaviate/__init__.py#L61), this is then used [here](https://github.com/weaviate/weaviate-python-client/blob/main/weaviate/connect/connection.py#L672) when instantiating a `Connection` object alongside the check for the Weaviate server version....

@rolandgvc, we have released `v4.7.0b0` [here](https://pypi.org/project/weaviate-client/4.7.0b0/) as an initial pre-release of the new async implementation! We're aiming to have a week or two of community engagement on the _beta_ to...

Here's some example usage to see how it works! ```python import weaviate import weaviate.classes as wvc async def async_example() -> None: async with weaviate.use_async_with_local() as client: collection = await client.collections.create(...

Closed by https://github.com/weaviate/weaviate-python-client/pull/1112, sorry for all the delay on this one! Static checking is available in `v4.6.5` now 😁

hi @kylrth, this is definitely a bug since we handle NumPy arrays gracefully in other areas of the API. I will make sure it's fixed for the next release. Thanks...

Hi all, we have released `v4.7.0b0` [here](https://pypi.org/project/weaviate-client/4.7.0b0/) as the first _beta_ release of the new async implementation! We intend on conducting this community _beta_ testing for a few weeks to...

Closed by https://github.com/weaviate/weaviate-python-client/pull/1007

Hi @glesperance, thanks for raising this one! We did not intend for collection-level batching to be ran simultaneously. What you're seeing is the underlying multi-threaded algorithms colliding since each collection-level...

Yes, I will look into throwing an exception if multiple batches run in a nested setup. Thanks for the report!