diff --git a/docs/docs/examples/vector_stores/QdrantIndexDemo.ipynb b/docs/docs/examples/vector_stores/QdrantIndexDemo.ipynb index 16a5752cc46e79525f179cdfc361af2bf8c203b2..6646264beaa27a8bfa22a0f087811e6795439915 100644 --- a/docs/docs/examples/vector_stores/QdrantIndexDemo.ipynb +++ b/docs/docs/examples/vector_stores/QdrantIndexDemo.ipynb @@ -216,9 +216,12 @@ " # you can use :memory: mode for fast and light-weight experiments,\n", " # it does not require to have Qdrant deployed anywhere\n", " # but requires qdrant-client >= 1.1.1\n", - " location=\":memory:\"\n", + " # location=\":memory:\"\n", " # otherwise set Qdrant instance address with:\n", - " # uri=\"http://<host>:<port>\"\n", + " # url=\"http://<host>:<port>\"\n", + " # otherwise set Qdrant instance with host and port:\n", + " host=\"localhost\",\n", + " port=6333\n", " # set API KEY for Qdrant Cloud\n", " # api_key=\"<qdrant-api-key>\",\n", ")"