I am new to weavaite . Created a 14 day trail sandbox .
I Am able to connect through Python V3 connection but Python V4 connection command is giving me error . All the commands written for Python V4 is giving error to me
I have used below sequence of commands :
pip install -U weaviate-client
import weaviate
import os
# Connect to a WCS instance
client = weaviate.connect_to_wcs(
cluster_url=os.getenv(“YOUR_WCS_URL”), # Set this environment variable
auth_credentials=weaviate.auth.AuthApiKey(
os.getenv(“YOUR_WCS_AUTH_KEY”)
), # Set this environment variable
)
But getting error :
WeaviateInvalidInputError: Invalid input provided: Argument ‘cluster_url’ must be one of: [<class ‘str’>], but got <class ‘NoneType’>.
I am doing all these in google colab python