fix port str (#758)

found b/c of this PR against docs
https://github.com/chroma-core/docs/pull/91
This commit is contained in:
Jeff Huber
2023-07-04 12:34:24 -07:00
committed by GitHub
parent 666bfc40f3
commit f92ed424e0

View File

@@ -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")