From f92ed424e006f4df36006a0f48faee786acdd4e2 Mon Sep 17 00:00:00 2001 From: Jeff Huber Date: Tue, 4 Jul 2023 12:34:24 -0700 Subject: [PATCH] fix port str (#758) found b/c of this PR against docs https://github.com/chroma-core/docs/pull/91 --- clients/python/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/python/README.md b/clients/python/README.md index 8ba4f00..640be06 100644 --- a/clients/python/README.md +++ b/clients/python/README.md @@ -20,7 +20,7 @@ from chromadb.config import Settings # Example setup of the client to connect to your chroma server client = chromadb.Client(Settings(chroma_api_impl="rest", chroma_server_host="localhost", - chroma_server_port=8000)) + chroma_server_http_port=8000)) collection = client.create_collection("all-my-documents")