You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am running the DB locally using docker. The image I am running is based on cr.weaviate.io/semitechnologies/weaviate:1.27.2 and has pre-populated data in it.
docker run -p 8080:8080 -p 50051:50051 -e RAFT_ENABLE_ONE_NODE_RECOVERY=true weaviate-with-data:latest
Here's my very simple client code.
importweaviateimportollamawithweaviate.connect_to_local() asclient:
# get the collectioncollection=client.collections.get(name="foo")
# get the embeddingresponse=ollama.embeddings(model="all-minilm", prompt="bla bla bla")
# find a vectorresult=collection.query.near_vector(near_vector=response["embedding"], limit=1)
This seems to be the same warning that was reported 2 years ago in #126 on an older version.
The text was updated successfully, but these errors were encountered:
I am consistently seeing the following warning when using
4.9.3
client with Python3.12.7
on M1 MacOS 14.7.I am running the DB locally using docker. The image I am running is based on
cr.weaviate.io/semitechnologies/weaviate:1.27.2
and has pre-populated data in it.Here's my very simple client code.
This seems to be the same warning that was reported 2 years ago in #126 on an older version.
The text was updated successfully, but these errors were encountered: