Christian Gjedrem

Results 1 comments of Christian Gjedrem

In my case ``` client = chromadb.HttpClient(host='127.0.0.1', port=8000, settings=Settings(allow_reset=True, anonymized_telemetry=False)) print(client.heartbeat()) ``` did work while this ``` client = chromadb.HttpClient(host='localhost', port=8000, settings=Settings(allow_reset=True, anonymized_telemetry=False)) print(client.heartbeat()) ``` did not. Hope that helps