Tommy Smith
Tommy Smith
@tibor-reiss, the fix for the broken CI jobs has been merged into `main`. Could you pull those changes onto your branch and then we can rerun the tests? Cheers!
I have investigated the issue on [chore/investigate-strings-in-vector](https://github.com/weaviate/weaviate-python-client/tree/chore/investigate-strings-in-vector) and cannot reproduce the exact behaviour quoted in the OP. There is a nuance which is that batching accepts the vector, since it...
Hi @eavanvalkenburg, thanks for raising! I'll look into how we can work around that and release a fix
Hi @AkiraRy, we recently refactored the underlying connection for the sync/async clients and I think this issue may have been fixed by the refactor. Can you try using v4.13.0 and...
Hi @DustinJamesT, which version is your server running on in WCD? When I try your code using a local server running `1.32.0`, I can't replicate the problem 🤔
Wow, I can see what's wrong and it's very interesting! The issue is that `collection = agent.database.weaviate_async_client.collections.get(collection_name)` comes before `await agent.database.weaviate_async_client.connect()` and so the `collection` object does not have the...
MRE for future development: ```python @pytest.mark.asyncio async def test_query_for_list_value(async_collection_factory: AsyncCollectionFactory) -> None: client = weaviate.use_async_with_local() collection = client.collections.get("TestCollection") await client.connect() await client.collections.delete("TestCollection") await client.collections.create( "TestCollection", properties=[ Property(name="name", data_type=DataType.TEXT), Property(name="tags", data_type=DataType.TEXT_ARRAY),...