I was trying to create a collection with Multi-Tenancy but it is giving the following error.
WeaviateTimeoutError: The request to Weaviate timed out while awaiting a response. Try adjusting the timeout config for your client. Details: Collection may not have been created properly.
I followed exact documentation code and even gave the correct collection name and all.
This is my code for creating the collection.
from weaviate.classes.config import Configure
pdf_collection = client.collections.create(
name=“Tapish”,
multi_tenancy_config= Configure.multi_tenancy(
enabled=True,
)
)